Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (43)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (9098)

  • 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