Recherche avancée

Médias (91)

Autres articles (66)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

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

  • How to extract frames from a video at browser using javascript ? [on hold]

    13 septembre 2018, par Hrisheekesh R

    Problem Statement :

    1. User picks a video to upload
    2. 20 screenshots at random timestamps at the video is captured inside the browser
    3. The screenshots are sent to a server.

    Is there a way to capture the frames inside a browser ?

  • ffmpeg h264_qsv Coded memory leak

    16 août 2018, par donghui.R

    I am developing in C++, using libx264 encoder to encode and push rtsp stream, I can see that the program memory will not rise in the task manager, but when I use the h264_qsv encoder, the program memory will slowly rise, this problem is bothered I have been here for a long time, please help me !

  • avformat/dashdec : Fix crash on invalid input/ENOMEM, fix leak

    20 septembre 2022, par Andreas Rheinhardt
    avformat/dashdec : Fix crash on invalid input/ENOMEM, fix leak
    

    In case a SupplementalProperty node exists in an adaptationset,
    it is searched for a "schemeIdUri" property via xmlGetProp().
    Whatever xmlGetProp() returns is then compared via av_strcasecmp()
    to a string literal. xmlGetProp() can return NULL, namely in case
    no "schemeIdUri" exists and (given that this string is allocated)
    presumably also on allocation failure. No check for NULL is done,
    so this may crash.

    Furthermore, the string returned by xmlGetProp() needs to be freed
    with xmlFree(), but this is not done either.

    This commit fixes both of these issues ; they existed since this code
    has been added in 10d008f0fd9e713e290f626300d66382ad786c49.

    This has been found while investigating ticket #9697. The continuous
    leaks might very well be the reason behind the observed slowdown.

    Reviewed-by : Steven Liu <lingjiujianke@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavformat/dashdec.c