Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (72)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

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

Sur d’autres sites (3993)

  • Can i use FFMPEG in a python script to combine mp4 files from a list into one file

    1er novembre 2020, par goldenwallnut

    i was using moviepy but for some reason i could not get it to work ( kept telling me that i did not set up the config correctly). i was wondering if i could combine all .mp4 files in a list but still use python. this is what i got so far. is there any other ways to combine multible video files and do other things like add text to the video ?

    


       import subprocess
   import os
lists = []
lists.append('E:\1.mp4')
lists.append('E:\2.mp4')
subprocess.call('ffmpeg.exe -f concat -i '+str(lists)+' -c copy outcome.mp4')


    


  • How to can I redirect the image frames of a video outputted by ffmpeg to a python list in a python script ?

    16 novembre 2020, par Ashutosh Holla

    I am extracting frames from a CCTV video of certain duration using ffmpeg command. The code written in the python script is as follow :

    


    import subprocess as sp

sp.call('ffmpeg -i c21.avi -ss 00:10:00 -to 00:11:00  op2/frame_%1d.jpg', shell=True).


    


    However I want to store every image frames in a python list rather to a file. What are the changes that I need to do ?. I have explored opencv cv2.VideoCapture method which resulted in assertion error after processing certain frames of the video.

    


  • How to mix a list of audio files with their timestamps in ffmpeg ? [closed]

    25 novembre 2020, par user14706760

    Track 1 : I have a list of mono audio files (about 100 pcs.) and a list of their timestamps.

    


    Track 2 : I have another list of stereo sound effects (about 20 pcs.) and a list of their timestamps.

    


    Track 3 : I have another stereo file which is longer than track 1 and track 2.

    


    How can I mix all three tracks and then apply normalization ? I found that normalization can be done like this :

    


    ffmpeg-normalize 1.wav 2.wav -o 1n.wav 2n.wav


    


    But I can't figure out how I should apply amix or amerge function in this case.