Recherche avancée

Médias (91)

Autres articles (99)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (9942)

  • avformat/utils : Fix memleaks

    24 septembre 2019, par Andreas Rheinhardt
    avformat/utils : Fix memleaks
    

    ff_read_packet had potential memleaks :
    1. If av_packet_make_refcounted fails, it means that the packet is not
    refcounted, but it could nevertheless carry side data and therefore
    needs to be unreferenced.
    2. If putting a packet on a packet list fails, it wasn't unreferenced.

    Furthermore, read_frame_internal leaked a packet's (side) data if a
    context update was required and failed.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/utils.c
  • avformat/hls : clean up duplicate option fields

    17 avril 2018, par Richard Shaffer
    avformat/hls : clean up duplicate option fields
    

    The HLSContext struct contains fields which duplicate the data stored in the
    avio_opts field. This change removes those fields in favor of avio_opts, and
    updates the code accordingly.
    The original patch caused the buffer pointed to by new_cookies in open_url to be
    leaked. The only thing that buffer is used for is to store the value until it
    can be passed to av_dict_set. To fix the leak, v2 of the patch simply calls
    av_dict_set with the AV_DICT_DONT_STRDUP_VAL flag, so that the dictionary takes
    ownership of the memory instead of copying it again.

    Reviewed-by : Steven Liu <lq@chinaffmpeg.org>
    Signed-off-by : Richard Shaffer <rshaffer@tunein.com>

    • [DH] libavformat/hls.c
  • Internet explorer does not support HTML5 video with height greater than 1088px

    25 novembre 2015, par evilguc

    The company I’m working at writing a web app which allows users to work with media files uploaded from mobile devices.

    To unify HTML5 video sources I decided to convert all the videos using H.264 codec in mp4 container and setting width to 1280px.

    During the fixing one of the issues with an app I decided to use 4:3 video file with 256x240px resolution. Since I convert all the files to HD resulting file became 1280x1200px and for some reason it isn’t playable in IE10 and IE11 (in other browsers going well).

    So I spend a lot of time trying to figure out the reason.