
Recherche avancée
Médias (2)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (81)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (15064)
-
Ffmpeg concat output is out of sync [closed]
1er avril 2023, par Michal KopčíkI have 2 videos. One is vertical and the second is horizontal. I converted the horizontal video to vertical one with black bars at the top and bottom. Now i have 2 vertical videos and i what to concat them into one. I have tried to concat them as usual but the second video in the output was faster and the video and audio was out of sync. Note that the original horizontal and the vertical version were not out of sync.


Here is link to the output


I have tried flags like
-async 1
and re-encoding with commands likeffmpeg -f concat -safe 0 -i mylist.txt -c:v libx264 -preset ultrafast -crf 23 -c:a aac -b:a 192k output.mp4

none of this worked. This video processing will be automated so i don't have the ability to add padding to the video or something like that.

-
pgssubdec : handle more complex PGS scenarios
18 juin 2014, par John Stebbinspgssubdec : handle more complex PGS scenarios
Add ability to handle multiple palettes and objects simultaneously.
Each simultaneous object is given its own AVSubtitleRect.
Note that there can be up to 64 currently valid objects, but only
2 at any one time can be "presented".Signed-off-by : Anton Khirnov <anton@khirnov.net>
-
Set background colour when converting flv to mp4 with ffmpeg
28 août 2012, par CastlesI'm attempting to convert flv files (with an alpha channel) that are uploaded to a server to html5 compatible formats. I've got the conversion working but the transparency is rendered as black. What I would like to do is have the ability to specify a colour.
Is it possible to convert the video and specify the colour ?
Alternatively, am I able to overlay the video with transparency on a still image that I generate ?
Update
I may of solved my own question... Here is my ffmpeg command :`ffmpeg -loop_input -f image2 -i background.png -r 25 -t 10 -an -level 21 -refs 2 -b 345k -bt 345k -acodec libfaac -vcodec libx264 -ac 2 -ab 96k -ar 44100 -vf "movie=input.flv, scale=370:500 [logo]; [in][logo] overlay=0:0 [out]" -y -threads 0 output.mp4`
Which works.. I just need to generate a background image at the right dimensions on the server before converting.