Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (105)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (7846)

  • How to combine multiple images horizontally and vertically using ffmpeg [duplicate]

    7 février 2020, par user3625087

    I’m attempting to create a script that can stitch together images side by side. These images are basically letters that I want to create words with (think of those ransom letters in Hollywood movies with randomly cut out letters from magazines). I need to specifically use these images, so I don’t want ffmpeg to type out some words into images itself. I’ve seen some similar answers using hstack and tile filter complexes but those didn’t work for me. Here is what I’ve tried so far :

    ffmpeg -pattern_type glob -i h.png -i e.png -i l.png -i l.png -i o.png -filter_complex tile=5x1 test.png

    For this one, -pattern_type didn’t exist as an option (I’m using ffmpeg 4.2 on Windows), so I removed it and the result was 1 letter and black space for the rest.

    ffmpeg -y -i h.png -i e.png -i l.png -i l.png -i o.png -filter_complex hstack test.png

    For this one, the result was 2 letters side by side, and then black space for the rest.

    All of my images are of the same height and variable width. Is there a command that can achieve this ?

  • ffmpeg gives an error :At least one output file must be specified

    24 août 2021, par Hrushikesh Reddy
    
ffmpeg -i video.mp4 -i japanese.aac -i english.aac -i hindi.aac 
-c:v copy -c:a copy 
-map 0:v:0 -map 1:a:0 -map 2:a:0 -map 3:a:0 OUTPUT_FILE.mp4


    


    I tried to add multiple languages to a video in ffmpeg it gives an error :At least one output file must be specified

    


  • Warp video and audio non-linearly with ffmpeg

    25 novembre 2016, par Simon Streicher

    I have a non-linear mapping of the time-locations of an input video to be warped to the time-locations of an output video. Here is an example :

    enter image description here

    I therefore want to take the input video and this mapping and accelerate-and-decelerate appropriately to produce the output video (audio included). Is there any functionality in ffmpeg to accomplish this ? Any frame interpolation may be nearest neighbour or something silly (it doesn’t need to look good), but I would prefer something sophisticated for the audio.

    I have Python along with the whole numpy-scipy stack to my disposal to convert this mapping to something more parseable by ffmpeg.