Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (76)

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

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (4528)

  • FFMPEG mux video and audio (from another video) - mapping issue

    22 avril 2015, par Mark

    I would like to place the audio from a video to another video without an audio (in one command) :

    ffmpeg.exe -i video1_noAudio.mov -i video2_wAudio.mov -vcodec copy -acodec copy video1_audioFromVideo2.mov

    I guess "-map" is the correct way to do it but I got confused with it.

    Can you suggest how to resolve it ?

  • How to extract certain frames from a .yuv video file and create a new video using FFmpeg, OpenCV and python ?

    8 avril 2020, par Ann Baiju

    I have a .yuv video file and a list containing some frame numbers. I need to make a new video with the frame numbers in the list and another video with the frame numbers that are not on the list. How can I do this using FFmpeg and subprocess module in python ? I'm also using OpenCV in the program. I need the new videos in both .yuv and .avi formats.

    


  • Auto resize video with ffmpeg based on input video resolution

    12 mai 2018, par Masoud Mohammadi

    I wrote a Bash script to convert all video files in a directory. Some videos are 1280 x 720 resolution, and others are 720 x 1280.

    How can I write a ffmpeg command that converts 1280 x 720 videos to 640 x 360 and 720 x 1280 videos to 360 x 640 ?