Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (61)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

Sur d’autres sites (6885)

  • Using ffmpeg to cut audio from specific position

    6 mars 2020, par infrahinium

    I need to cut off the first 0.006 seconds of an audio file. I want to automate it using ffmpeg, I tried those codes :

    ffmpeg -ss 0.006 -i input.mp3 -c copy output.mp3
    or
    ffmpeg -itsoffset 0.006 -i input.mp3 -c copy output.mp3

    Both commands gives me the same audio file, but with a 0.030 sec long blank audio at beginning, instead of its 0.006 second long original blank

    What have I done wrong ?

    Here’s what happends to file

  • ffmpeg : concat syntax for avi files with different frame rate

    21 février 2020, par suste88

    What is the cli syntax to concat several avi files with different fps into one ?

    ffmpeg -f concat -safe 0 i myListOfAvi.txt -c:v copy output.avi

    I want to keep the fps as it is(dont want to covert all avi fps to same). For example : I have avi files with 5, 10, 15, 20 fps and want output file after concatentation to have fps 5 , then 10, then 15 and so on(simply join the video).
    Right now avi files concatenation using this command line gives me 20 minutes long video instead of a minute long video. Have not figured out what is causing it. The same syntax works for creating output in mp4 format though, but it gets stuck in first frame for five seconds at the start.

  • Sync 2 Audio Files [on hold]

    30 mars 2017, par Syed Armaan Hussain

    I have 2 audio (.wav) files recorded by two different persons.
    They are saying the same sentences but there is some differences in duration like the first audio is 10 sec long but other is 9 sec long. There are deifference in silences and lipsing.
    I want to sync these two audios . How can i achieve it . If anyone out there has already did research on it . Please share your experience. Or any SDK that can help me with this . I am using C# tried it with ffmpeg but didnt find any command for this.

    something like this
    https://digicompdiy.wordpress.com/2012/10/15/automatically-sync-up-two-audio-files/

    Reagrds