Recherche avancée

Médias (0)

Mot : - Tags -/navigation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (112)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (8034)

  • Retrieving and Saving media metadata using FFmpeg

    22 mars 2024, par Rahul Patwa

    I want to read the metadata in media files and then save that metadata in a text/xml file, so that I can later insert that data in my database. I would prefer to use ffmpeg.

    



    Also is the same thing possible with MediaInfo ?? I know I can get the metadata for individual tracks using MediaInfo, but I would want to automate it ; as in whenever a new media file is found, read its metadata and then store it in a txt/xml file.

    



    Or, is there any other tool/utility/API that I can use for this ?

    


  • Retrieving and Saving media metadata using FFmpeg

    10 juin 2015, par Rahul Patwa

    I want to read the metadata in media files and then save that metadata in a text/xml file, so that I can later insert that data in my database. I would prefer to use ffmpeg.

    Also is the same thing possible with MediaInfo ?? I know I can get the metadata for individual tracks using MediaInfo, but I would want to automate it ; as in whenever a new media file is found, read its metadata and then store it in a txt/xml file.

    Or, is there any other tool/utility/API that I can use for this ?

  • Extract RGB values from a AVFrame (FFMPEG) in C++

    9 novembre 2011, par Extrakun

    I am currently trying to read in video frames by using FFMPEG. The format is PIX_FMT_RGB24 ; For each frame, the RGB values are all combined together in frame->data[0] (Where frame is of the type AVFrame).

    How do I extract the individual R, G and B values for each frame ? This is for processing the video. I would think it would work the same way as extracting the RGB values from a bitmap too. Thanks !