Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (32)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (5773)

  • ffmpeg speed up video - Windows

    19 mars 2019, par Flash Thunder

    In manual it says :

    ffmpeg -i input.mkv -filter:v 'setpts=0.5*PTS' output.mkv

    But when I run :

    ffmpeg -i input.mp4 -filter:v 'setpts=0.5*PTS' speedup.mp4

    I get an error :

    [AVFilterGraph @ 0000000002500600] No such filter: 'setpts=0.5*PTS'
    Error opening filters!

    Not sure if it means that filter can’t be opened at all or simply this filter is not available.

    How do I run it correctly ? Or maybe my release does not support it, then where can I get the release that would work right ? Win32/x64 binary

  • How to change video speed by ffmpeg ?

    17 mai 2019, par Pooja Jadav

    I’m using ffmpeg for video filter.

    But, When I changed video speed, that time I got issue

    • Audio is longer than video :

      ffmpeg -i INPUT.mp4  -filter:v setpts=0.5*PTS -shortest -y -preset ultrafast OUTPUT.mp4

    I want to set audio’s length same as video’s length.

    • shortest = to extend audio streams to the same length as the video stream

    In my case, shortest is not working. Video file and audio file, both are different and then after merging in a video file. Video’s last frame stop and audio is continued working.

  • How to speed up ffmpeg when working with multiple files ?

    6 mai 2019, par OBX

    I have 100,000 files which I need to convert from .mp3 to .wav . However, at the moment it takes 1 minute to convert 10 files each of 1 hour duration.

    Here’s what I tried :

    for i in *.mp3
    do
        ffmpeg -i "$i" -acodec pcm_s16le -ac 1 -ar 16000 "stm/$(basename -s .mp3 "$i").wav"
    done

    Also tried GNU parallel as well, which takes same time as well :

    find ./set/ -name "*.mp3" | parallel 'ffmpeg -i {} -acodec pcm_s16le -ac 1 -ar 16000 {.}.wav'

    Is there a better hack to process the same in less time ?