Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (52)

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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

Sur d’autres sites (9136)

  • Create a silent mp3 from the command line

    2 juillet 2015, par Stephen

    I am trying to create a silent / empty mp3 of (x) seconds using the command line. Quite a simple task I thought !

    It seems lame is able to do somethign like this but I am unable to find anything that leads to achieving this.

    Has anyone been able to do something like this ?

  • How to use MLT Framework through command line ?

    29 juin 2016, par Aman sinha

    I am new with video editing. I want to use the MLT framework through command line in order to edit thousands of video.
    I am unable to install the framework. Can anyone help me with the installation process ?

  • How to read sei by command line of ffmpeg

    28 avril 2021, par glowry

    How to read sei by command line of ffmpeg.
e.g.

    


    ffmpeg -i INPUT -c:v copy -bsf:v filter1[=opt1=str1:opt2=str2][,filter2] OUTPUT


    


    I know bsf can modify the sei, but it can't read sei.

    


    If the command line can't solve it, plase give me some demo by api of ffmpeg.

    


    For example.

    


    I insert a h264_metadata to file.

    


    ffmpeg -i original.mp4 -c copy -bsf:v h264_metadata=sei_user_data='086f3693-b7b3-4f2c-9653-21492feee5b8+hello' file_with_h264_metadata.mp4


    


    and then I push it to rtmp

    


    ffmpeg -re -i ./file_with_h264_metadata.mp4 -vcodec h264 -f flv  rtmp://127.0.0.1:1935/live/h264_metadata


    


    How can I extact the h264_metadata with ffmpeg command line ?

    


    I have try this, but it does not work

    


    ffmpeg -i rtmp://127.0.0.1:1935/live/h264_metadata -c:v copy -bsf:v h264_metadata -f null -