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 (5939)

  • Evolution #3560 : Supprimer l’option expérimentale Google Closure Compiler

    4 mai 2017, par b b

    Super, merci mignon :)

  • build : Move entries related to building TOOLS to a subdirectory Makefile

    5 décembre 2016, par Diego Biurrun
    build : Move entries related to building TOOLS to a subdirectory Makefile
    
    • [DBH] Makefile
    • [DBH] tools/Makefile
  • H264 to MP4 with Bframe play back and forth on google chrome[ffmpeg]

    2 mai 2017, par Ravi Agola

    I want to generate a mp4 container with h264 encoded file.

    H264 file contains [I P B B][P B B][P B B][P B B] frames.

    when I generate a mp4 file with FFmpeg, It works well with FFplay as well as VLC but on google-chrome mp4 file plays frame back and forth.

    ffmpeg -i input.h264 -vcodec copy output.mp4

    when i use internal codec library(libx264) it works well on (ffplay,vlc and google-chrome)

    ffmpeg -i input.h264 -vcodec h264 output.mp4

    as above command transcode h264(native) to h264(x264), I don’t want to transcode file as I will be using it with ffmpeg library.

    when I use h264 without B frame it works well in both cases.

    I have tried some experiment with sample test file available here.

    direct conversion(MKV to MP4) works well with chrome as below

    ffmpeg -i jellyfish-3-mbps-hd-h264.mkv -vcodec copy output.mp4

    (MKV to H264 and H264 to MP4) plays back and forth on chrome

    ffmpeg -i jellyfish-3-mbps-hd-h264.mkv -vcodec copy output.h264
    ffmpeg -i output.h264 -vcodec copy output.mp4

    I get message in this case
    [mp4 @ 0xb6f8b20] Timestamps are unset in a packet for stream 0. This is deprecated and will stop working in the future. Fix your code to set the timestamps properly
    [mp4 @ 0xb6f8b20] pts has no value"

    what can be a reason behind this behavior ?

    Thanks.