Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

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

Autres articles (86)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

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

Sur d’autres sites (13586)

  • How do I use FFMPEG with filter_complex to combine/join a full folder of 40+ audio files into one long mp3 ?

    5 octobre 2020, par djturbojp7

    I have a full directory of 40-50 audio files that I am trying to "concat" into one long mp3.

    


    I was able to do this just testing around with 2 files using the command shown below, but I need an easy way to do this with a script that I can make if I have a folder of many files with complicated file names. This is something I'm going to be doing frequently so if I had a script or something I could use quickly that would be most helpful.

    


    ffmpeg -i a.webm -i b.webm -filter_complex "[0:a] [1:a] concat=n=2:v=0:a=1 [a]" -map [a] -c:a mp3 testfull.mp3


    


  • ffmpeg : what rate to set in this example

    2 février 2013, par jeet

    I'm compiling a video with ffmpeg, multiple images and a wav file.
    It gets compiled properly, but images seem to end before the wav finishes. Basically the last few frames are blank.
    Is there a calculation I can apply to set frame rate etc, so that this does not happen ?
    Wav duration : 60 seconds
    Number of images : 175
    command used :

    ffmpeg -r 5 -i img%d.jpg -i audio.wav -r 30 video.mov

    what rates should I use here ?

  • How to rotate thumbnail image in ffmpeg

    27 mai 2014, par Vishal Sharma

    I am using this code for my thumbnail image

    <?php
    $ffmpeg = '/usr/bin/ffmpeg';
    $second = 2;
    $video = 'video/123.mp4';    
    $image = 'thumb/123.jpg';
    $command = "$ffmpeg  -itsoffset -$second  -i $video -vcodec mjpeg -vframes 1 -an -f rawvideo -s 175x150 $image";

    its giving me the thumbnail image BUT i want to rotate that thumbnail image. I already tried transpose and rotate but nothing happen even i lost the thumbnail image also.

    Tried solutions but nothing happen :-

    $command ="$ffmpeg -itsoffset -$second -i $video -vcodec mjpeg -vframes 1 -vf 'transpose=1' -an -f rawvideo -s 175x150 $image";

    and

    $command ="$ffmpeg -itsoffset -$second -i $video -vcodec mjpeg -vframes 1 -vf 'rotate=PI/2' -an -f rawvideo -s 175x150 $image";

    Please help me.....