Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

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

Autres articles (71)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (10379)

  • Bash Function for FFMPEG change speed (audio and video together) ?

    22 avril 2021, par Mr Candido

    I saw several examples, I tried several, but I couldn't get any that could increase the speed by 20, 30, ...%

    


    I was only able to convert the video, but the audio and video were never synchronized

    


    ffmpeg_changespeed ()
{
video_source = $1
speed = $2

ffmpeg ???????
}


    


    Speed

    


    1.2 => 20% increment

    


    1.5 => 50%

    


    2 => 100%

    


  • ffmpeg : speed up AND rotate video

    30 juillet 2021, par LFPGaming

    This is my current script that I'm trying to use to speed up the playspeed and rotate my video by 90', but it doesn't work when I include the transpose=1 argument.

    


    "C:\ffmpeg-win64\bin\ffmpeg.exe" -i "C:\video1.mkv" -vf "setpts=PTS/60" "transpose=1" -an -crf 18 "C:\video2.mkv"


    


    Script works without the transpose argument and speeds up my video perfectly, but Script won't run once I try to rotate the video by 90' and outputs an error :

    


    Unable to find a suitable output format for 'transpose=1'
transpose=1: Invalid argument


    


    Can anyone tell me where I'm going wrong ?

    


  • ffmpeg : How to Use Flip, Concat and Speed up Multiple Videos Together ?

    5 août 2021, par ChhengRavy

    Code1 : Merge Videos

    


    ffmpeg -i   input1.mp4 -i input2.mp4 -filter_complex "[0:v] [0:a] [1:v] [1:a] concat=n=2:v=1:a=1 [v] [a]" -vsync 2 -map "[v]" -map "[a]"    output1.mp4


    


    Code2 : Flip and Speed Up Video

    


    ffmpeg -i   outpu1.mp4 -filter_complex "[0:v]hflip,setpts=0.77*PTS;[0:a]atempo=1.3" output2.mp4


    


    How can we combine that codes together ? Please Help Me !!!