
Recherche avancée
Autres articles (78)
-
Les formats acceptés
28 janvier 2010, parLes 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 (...) -
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
Changer son thème graphique
22 février 2011, parLe thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
Modifier le thème graphique utilisé
Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
Il suffit ensuite de se rendre dans l’espace de configuration du (...)
Sur d’autres sites (4584)
-
Overlaying multiple videos with ffmpeg [closed]
21 juin 2015, par xZiseI’m trying to overlay multiple videos into one video with ffmpeg. There is already a question with only one overlay, but I want to add multiple videos at the same time (to avoid multiple encodings).
I try to use following line :
ffmpeg -i background.m2v -vf "movie=a.m2v [a]; movie=b.m2v [b]; [in][a] overlay=0:366, [b] overlay=592:41" combined.m2v
The error is now, that the overlay area (0,366) – (720,942) is not within the main area (0,0) – (720, 210). But if I use only one overlay file alone it works.
The sizes of the videos :
- background : 720x576
- a.m2v : 72x48
- b.m2v : 720x210
In the result I want the a.m2v video in the top left corner (the logo) and the b.m2v as a lower third.
-
Get screenshots of video with subtitles
2 mars 2023, par rkjlesI'm trying to get a single frame from a video at every 50 seconds with ffmpeg including the subtitles


The code I know of that will output a frame every 50 seconds is


ffmpeg -i “movie.mkv” -vf fps=1/50 img%03d.bmp


and the only code I know of that will take a snapshot of the frame with the subtitles is


ffmpeg -ss 00:09:18 -copyts -i “movie.mkv” -vf subtitles=subtitles.srt -vframes 1 001.png


But I dont know how to incorporate them together so it will take a snapshot with the subtitles at every 50 seconds or if this is even possible


I am new to all of this so if anyone could help me, that would be amazing, thank you


-
ffmpeg : how to convert iphone4 720p video into similar quality Flash video ?
5 septembre 2011, par SajeeWhat are the proper arguments to ffmpeg to covert an iphone4 720p video into the similar quality Flash video ?
I tried the following which resulted in a low quality Flash video :
ffmpeg movie.mov movie.flv
What are the right switches ?