
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (112)
-
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 (5265)
-
FFMpeg Logo Different Sepration [closed]
9 mai 2024, par unkpSimple :


1.Want a logo to be only for specific times on a video,


motivation : reduce length of the process if possible.


the code used for logo is this one :


ffmpeg -i output0.mp4 -vf "movie=logo.png [watermark] ; [watermark]scale=220x220 [watermark2] ;[in][watermark2] overlay=main_w-overlay_w-10:main_h-overlay_h-10 [out]" output0logo0done.mp4



Would Want like something like this if possible : keep the logo for 1 minute then 4 minutes later keep the logo again for 1 minute.



Tried searching about this request, the answers found were related to ->


split the parts like 1,2,3,4,5 only add the logo to odd parts ->


combine them after, this may be too troublesome


-
FFMpeg Logo Different Sepration [Beginner]
9 mai 2024, par unkpSimple :


1.Want a logo to be only for specific times on a video,


motivation : reduce length of the process if possible.


the code used for logo is this one :


ffmpeg -i output0.mp4 -vf "movie=logo.png [watermark] ; [watermark]scale=220x220 [watermark2] ;[in][watermark2] overlay=main_w-overlay_w-10:main_h-overlay_h-10 [out]" output0logo0done.mp4



Would Want like something like this if possible : keep the logo for 1 minute then 4 minutes later keep the logo again for 1 minute.



Tried searching about this request, the answers found were related to ->


split the parts like 1,2,3,4,5 only add the logo to odd parts ->


combine them after, this may be too troublesome


-
How can I fix missing footage when I trim a video through ffmpeg ?
18 juillet 2021, par LPMAI'm trying to remove commercials from an old PVR recording, and am extracting the main program by trimming/splitting the original file into separate parts :


ffmpeg -i name.avi -ss 00:02:00 -to 00:08:20 -acodec copy -vcodec copy part01.avi
ffmpeg -i name.avi -ss 00:11:23 -to 00:22:03 -acodec copy -vcodec copy part02.avi
ffmpeg -i name.avi -ss 00:25:34 -to 00:36:37 -acodec copy -vcodec copy part03.avi
ffmpeg -i name.avi -ss 00:40:08 -to 00:52:11 -acodec copy -vcodec copy part04.avi
ffmpeg -i name.avi -ss 00:55:41 -to 01:52:53 -acodec copy -vcodec copy part05.avi



For some reason, parts 3 and 5 are perfect, whereas parts 1, 2 and 4 each have about 9 seconds where the audio is playing against a "frozen" frame before the video part starts playing normally. The audio data seems to be intact (and cut at the designated place), but the video seems to be missing that data. I'm guessing it might have to do with reference frames ? Is there a quick way to fix/avoid the issue ? I would like to avoid data loss (through transcoding) as much as possible.