
Recherche avancée
Autres articles (54)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Publier sur MédiaSpip
13 juin 2013Puis-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, parUnlike 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 (6344)
-
Is there way to increase speed of burning subtitles to a video in ffmpeg
19 mars 2021, par Ahmed YasirCurrently, I do it this way :
ffmpeg -i video.mkv -vf subtitles=video.mkv out.mp4
But with some videos, it takes too long around 55mins but with handbrake, it takes only 10 mins to burn subtitle to video even though I tweaked the setting for instances enabling ultrafast mode. Is there a way to increase the speed of that : maybe saving output files with the lesser quality or something ?

-
Bash Function for FFMPEG change speed (audio and video together) ?
22 avril 2021, par Mr CandidoI 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 LFPGamingThis 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 ?