Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (84)

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

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

Sur d’autres sites (4400)

  • avdevice/sdl2 : Suppress macro redefinition warning

    18 mars, par Andreas Rheinhardt
    avdevice/sdl2 : Suppress macro redefinition warning
    

    SDL2's headers #define HAVE_PTHREAD_SETNAME_NP (to one here) ;
    we also have a config define which leads the compiler to
    warn about this when the values are distinct (as they are here).
    Suppress this warning by including config.h before SDL.h.
    The latter will then redefine our define which doesn't matter
    and which does not lead to warnings because compilers don't warn
    about system headers by default (depending upon -Wsystem-headers).

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavdevice/sdl2.c
  • How to read .mp4 files in opencv

    9 mai 2016, par Noah

    I am totally newbie in OpenCV, C++. Trying to read an mp4 video but found OpenCV does not support mp4, it only reads avi(I am not sure whether I am write or wrong). After an online research came to know ffmpeg is the best option to convert mp4 to avi for further processing.

    I am using OpenCV 3.0 with visual studio 2012. I saw there is a dll file, opencv_ffmpeg300.dll in OpenCV C:\opencv\build\x86\vc11\bin folder. Is there any way I can use this dll file to read and convert my video ?

    It will be really appreciating if someone can provide me some guidelines, I am lost in the OpenCV world totally.

    For video,

    Video I/O:
      Video for Windows:           YES
      DC1394 1.x:                  NO
      DC1394 2.x:                  NO
      FFMPEG:                      YES (prebuilt binaries)
        codec:                     YES (ver 55.18.102)
        format:                    YES (ver 55.12.100)
        util:                      YES (ver 52.38.100)
        swscale:                   YES (ver 2.3.100)
        resample:                  NO
        gentoo-style:              YES
      OpenNI:                      NO
      OpenNI PrimeSensor Modules:  NO
      OpenNI2:                     NO
      PvAPI:                       NO
      GigEVisionSDK:               NO
      DirectShow:                  YES
      Media Foundation:            NO
      XIMEA:                       NO
      Intel PerC:                  NO
  • movtextdec : fix handling of UTF-8 subtitles

    24 mars 2018, par wm4
    movtextdec : fix handling of UTF-8 subtitles
    

    Subtitles which contained styled UTF-8 subtitles (i.e. not just 7 bit
    ASCII characters) were not handled correctly. The spec mandates that
    styling start/end ranges are in "characters". It's not quite clear what
    a "character" is supposed to be, but maybe they mean unicode codepoints.

    FFmpeg's decoder treated the style ranges as byte idexes, which could
    lead to UTF-8 sequences being broken, and the common code dropping the
    whole subtitle line.

    Change this and count the codepoint instead. This also means that even
    if this is somehow wrong, the decoder won't break UTF-8 sequences
    anymore. The sample which led me to investigate this now appears to work
    correctly.

    • [DH] libavcodec/movtextdec.c