Recherche avancée

Médias (91)

Autres articles (32)

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

  • Participer à sa documentation

    10 avril 2011

    La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
    Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
    Pour ce faire, vous pouvez vous inscrire sur (...)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

Sur d’autres sites (4539)

  • WebRTC Video Track to ffmpeg in Node

    15 mai 2021, par Marcos López

    I have succesfully managed to establish a WebRTC connection between Node (server) and a browser. Server gets the video track on onTrack callback inside the RTCPeerConnection. Is there any way I can potentially convert the video track and make it work on ffmpeg so I can output it to rtmp.

    


    Thanks in advance.

    


  • Add 2 seconds of blank/black video with ffmpeg

    22 avril 2016, par user3076099

    Let’s say I have two videos I want play simultaneously. movieA.mp4 is 38.6 seconds duration, and movieB.mp4 is 31.14 seconds duration. Using ffmpeg is there an easy way to fill the end of movieB.mp4 with black silence so that it is exactly 38.6 seconds (matching movieA.mp4). There’s a very niche technical reason I want to do this, so don’t ask haha !!

    Also if possible, but less important, a way to remove this afterwards.

    Been searching for 2 days for any sort of easy way around this without luck !!!

    Thanks so much in advance !

  • FFMPEG Combine a list of jpg with mo3 audios to sepatated videos on batch [closed]

    20 septembre 2020, par Francisco Barrod

    i have a big list of jpg and mp3 files. each of them have identical names but they not enumerated. example cat.jpg and cat.mp3 pig.jpg and pig.jpg i want to make videos cat.mp4 pig.mp4

    


    i have a code to do this manually but i want to make it on batch. heres my code

    


    ffmpeg -loop 1 -i cat.jpg -i cat.mp3 -threads 8 -shortest -c:v libx264 -c:a copy cat.mp4  


    


    its simple but works for my need.

    


    need help to make it on batch-

    


    thanks in advance.