Recherche avancée

Médias (0)

Mot : - Tags -/serveur

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

Autres articles (13)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (5551)

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