Recherche avancée

Médias (91)

Autres articles (84)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (4545)

  • ffmpeg mp4 to hls vod with extract segment duration without re-encoding

    11 juillet 2021, par Jeremy

    Hello I have h264 mp4 files. What I want to do is convert it to hls without re-encoding. This can be achieve by :

    


    ffmpeg -i input.mp4 -c copy -force_key_frames "expr:gte(t,n_forced*4)" -hls_time 4 -hls_playlist_type vod -hls_segment_type mpegts vid.m3u8


    


    But this problem with this is that it doesn't create extract segment duration :

    


    $ for f in *.ts; do echo -n "$f,"; ffprobe -v error -show_entries format=duration -sexagesimal -of csv=p=0 "$f"; done
vid0.ts,0:00:04.837700
vid1.ts,0:00:05.587200
vid2.ts,0:00:06.006200
vid3.ts,0:00:01.368200
vid4.ts,0:00:02.693867


    


    I don't believe I can't insert keyframes without encoding.

    


    When I run :

    


    ffmpeg -i input.mp4 -codec:v libx264 -force_key_frames "expr:gte(t,n_forced*4)" -hls_time 4 -hls_playlist_type vod -hls_segment_type mpegts vid.m3u8


    


    its works but this is resource intensive as it re-encode the video.

    


    So I am looking for the best way to achieve this while using minimal resource as possible.

    


  • avutil/mem : Correct documentation of av_fast_*alloc(z)

    18 novembre 2018, par Andreas Rheinhardt
    avutil/mem : Correct documentation of av_fast_*alloc(z)
    

    The current wording regarding size and min_size is completely wrong and
    ignores that min_size is indeed only a desired minimal size, not the
    actually allocated size.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@googlemail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/mem.h
  • Build FFMpeg for converting m3u8 to mp4 only

    8 août 2020, par Hare Shinohara

    I want to build a minimal version of FFMpeg for converting m3u8 to mp4 only, and the m3u8 file will be input via a https link.

    &#xA;

    I tried

    &#xA;

    ./configure \&#xA;--disable-everything \&#xA;--disable-ffplay --disable-ffprobe \&#xA;--disable-asm --disable-doc --disable-devices \&#xA;--disable-pthreads --disable-w32threads --disable-hwaccels \&#xA;--disable-parsers --disable-bsfs --disable-debug \&#xA;--disable-indevs --disable-outdevs \&#xA;--enable-gpl --enable-nonfree \&#xA;--enable-openssl \&#xA;--enable-libx264 \&#xA;--enable-protocol=file,https,crypto,hls \&#xA;--enable-decoder=aac,h264 \&#xA;--enable-encoder=aac,libx264 \&#xA;--enable-demuxer=aac,h264,hls \&#xA;--enable-muxer=h264,mp4&#xA;

    &#xA;

    but got errors

    &#xA;

    Error when loading first segment&#xA;

    &#xA;

    Invalid data found when processing input&#xA;

    &#xA;

    Does anyone know how to configure correctly in this case ?&#xA;Please help.

    &#xA;