Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (98)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

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

  • ffmpeg split avi into frames with known frame rate

    5 septembre 2023, par Myx

    I posted this as comments under this related thread. However, they seem to have gone unnoticed =(

    



    I've used

    



    ffmpeg -i myfile.avi -f image2 image-%05d.bmp


    



    to split myfile.avi into frames stored as .bmp files. It seemed to work except not quite. When recording my video, I recorded at a rate of 1000fps and the video turned out to be 2min29sec long. If my math is correct, that should amount to a total of 149,000 frames for the entire video. However, when I ran

    



    ffmpeg -i myfile.avi -f image2 image-%05d.bmp


    



    I only obtained 4472 files. How can I get the original 149k frames ?

    



    I also tried to convert the frame rate of my original AVI to 1000fps by doing

    



    ffmpeg -i myfile.avi -r 1000 otherfile.avi


    



    but this didn't seem to fix my concern.

    


  • avcodec/ttmlenc : split header writing into its own function

    15 mars 2021, par Jan Ekström
    avcodec/ttmlenc : split header writing into its own function
    

    Signed-off-by : Jan Ekström <jan.ekstrom@24i.com>

    • [DH] libavcodec/ttmlenc.c
  • avformat/mux : split side data earlier in av_write_frame and av_interleaved_write_frame

    4 novembre 2016, par James Almer
    avformat/mux : split side data earlier in av_write_frame and av_interleaved_write_frame
    

    Similarly, merge it back before returning.

    Fixes ticket #5927.

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/mux.c