Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (49)

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

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

  • Optimizing preprocessing of data

    12 mai 2018, par WhatAMesh

    I have to preprocess 1-2,5 Terabytes of 1920x1080 videos (in .mp4 format) and try to find the fastest way to do so.

    For every video I have to :

    • Sample at 1 fps
    • Crop two images out of every frame
    • Save the two frames (output format needs to be uncompressed)

    Im currently doing it the following way using ffmpeg :

    def cropVideo(vidInPath, vidOutPath):
               crop = 'ffmpeg -i ' + vidInPath + ' -filter_complex "[0:v]crop=400:200:0:484[face];[0:v]crop=300:50:1624:300[number]" -map [face] -map 0:a ' + vidOutPath + '/face/face.mp4 -map [number] -map 0:a ' + vidOutPath + '/number/number.mp4'
               subprocess.call(crop)
               return

    def videoToImageSequence(vidInPath, vidOutPath):
       conv = 'ffmpeg -i ' + vidInPath + ' -vf fps=1 ' + vidOutPath + 'video-frame%05d.png'
       subprocess.call(conv)
       return

    cropVideo(dirPath + a + '.mp4', dirPath + a + '/')
    videoToImageSequence(dirPath + a + '/face/face.mp4', dirPath + a + '/face/')
    videoToImageSequence(dirPath + a + '/number/number.mp4', dirPath + a + '/number/')

    Is there a faster way to do this ?

  • avfilter/vf_blackdetect_vulkan : fix black region reporting

    2 juin, par Niklas Haas
    avfilter/vf_blackdetect_vulkan : fix black region reporting
    

    The old logic failed to take into account files that ended on ablack
    region. The new logic matches the vf_blackdetect behavior.

    • [DH] libavfilter/vf_blackdetect_vulkan.c
  • Resize/cut video to a certain region

    18 mars 2023, par user3

    I have a series of videos (like 7k videos) in which I have to make a cut. Basically they are videos of people talking, and I have to cut said video and keep only the part of the lips.

    


    Does anyone know how to cut them ? I need to be able to automate it

    


    I'm looking for a command line software, where you can enter the coordinates and generates the new cropped video.

    


    Is it possible to do it maybe with ffmpeg ? I couldn't find a way yet

    


    Thank you !!!

    


    I have tried to do it using ffmpeg, but I couldn't find the way to introduce the region (by coordinates) which I want cut