
Recherche avancée
Autres articles (59)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne 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 (...) -
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 -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (9375)
-
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 ?

-
speed up the video and audio 1.5 times ffmpeg [duplicate]
23 février 2021, par Mayank ThapliyalI have a video which I want to speed up 1.5 times. I gave a check on stackoverflow but I did not got the perfect answer for me (sometimes audio disappears,sometimes audio remains unaffected). I want to speed up my video(including audio) 1.5 times.


Also,if possible, can the command be combined with this command into a single command(I guess it would save my processing time)


ffmpeg -i video$.mp4 -filter_complex "[0]crop=iw:ih/2:0:0[top];[0]crop=iw:ih/2:0:oh[bottom];[top][bottom]hstack" -preset fast -c:a copy video.mp4


Thanks in advance


-
can we runtime change video playback speed using ffmpeg ? [closed]
17 février 2021, par vbv_at_gdI am trying to create video player application which has one feature that change runtime playback speed for example if user set playback speed (using seekbar value) then video play in slow-motion of fast forward for that particular time.


But FFMPEG create new video and so i want to avoid new video creation every time.