Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (31)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (4160)

  • Revision 25eeac0518 : Skip COMDAT sections when parsing COFF Fixes https://code.google.com/p/chromium

    4 février 2014, par Rui Ueyama

    Changed Paths :
     Modify /build/make/obj_int_extract.c



    Skip COMDAT sections when parsing COFF

    Fixes https://code.google.com/p/chromium/issues/detail?id=339889
    when building Clang-based ASan on Windows

    Change-Id : Ib77d9593636f46827dbb77f087d407ec0f463fc7

  • Revision 82593 : Support de google analytics universal : version 0.4.6 * Le mode universal ...

    19 mai 2014, par cam.lafit@… — Log

    Support de google analytics universal : version 0.4.6
    * Le mode universal est prise en charge, il s’agit d’une case à cocher pour prendre en compte le script à charger
    * La meta est préfixée ga pour éviter un conflit avec le mot potentiellement générique "universal"
    Version testée et validée pour spip 3.0
    Référence : https://developers.google.com/analytics/devguides/collection/upgrade/reference/gajs-analyticsjs

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