Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (57)

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

  • Video files conversion/transcoding Google App Engine

    22 avril 2020, par Vasilis

    I want to start a cloud computing project with the simple task to :

    



      

    1. Receive uploaded video files
    2. 


    3. Do some transcoding / converting to them
    4. 


    5. Allow user to download / stream the generated file
    6. 


    



    I was thinking ffmpeg as an external command line tool integrated in a Java/Google App engine Application. Since it was fairly hard to be assured about the limitations of the framework, can someone tell me if this is feasible ?

    



    Thank you in advance !

    


  • How to merge Video and Subtitle on Google Colab with mkvmerge ?

    23 août 2022, par SomeName

    On Google Colab I'm using mkvmerge to merge Video and Subtitle with only specifying the folder path also there is a option to include attachments fonts if preferred

    


    The code doesn't belong to me I found it somewhere.

    


    I tried this but it didn't seem to work? When I execute the code it does nothing? İt won't start muxing video and Subtitle? https://pastebin.com/raw/q85DTkta

    


  • Encode multiple files from the same Folder with Google Colab & FFmpeg

    16 août 2021, par Ptibouc77

    i made a Google colab to encode my videos, but actually i can only do files on by one.
I want to encode all video files from the same folder.

    


    I tried this but didn't seem to works

    


        import os

DIRECTORY= '/content/drive/My Drive/Videos'
for filename in os.listdir(DIRECTORY):
    if (filename.endswith(".mov")): #or .avi, .mpeg, whatever.
        os.system("ffmpeg -i {0} -c:v libx265 -crf 26 -c:a aac -b:a 160k output%d.mp4".format(filename))
        print(filename)


    


    Edit : I edited the FFmpeg command but still not workings on Google Colab.
Edit 2 : Print command only return the name of the files with the extension like "MyMovie.mov" how do i put the full path to the ffmpeg command ? I also want to put the ouput files to a subfolder named x265