
Recherche avancée
Autres articles (99)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (11048)
-
How do I make Ffmpeg work for subtitles in flutter ?
19 juillet 2024, par Mohammed BekeleI'm trying to burn subtitles in a video. I'm going to show you the manual command I used :


String newCmd =
 '-i /storage/emulated/0/ffmpeg/video.avi -vf subtitles=\'/storage/emulated/0/ffmpeg/caption.srt\':force_style=\'Fontsize=24\' /storage/emulated/0/ffmpeg/apt.mp4';
 



When I use the above command it just fail, but the following code works.


String newCmd =
 '-i /storage/emulated/0/ffmpeg/video.avi /storage/emulated/0/ffmpeg/apt.mp4';



When I run ffmpeg on my pc this is the command


ffmpeg -i F:\ffmpeg\video.avi -vf subtitles='F\:\\ffmpeg\\caption.srt':force_style='Fontsize=24' F:\ffmpeg\new.mp4



So when using in subtitles we need to provide extra backslashes to the paths. So does this mean Flutter expects the same ? Or should I have to include a font file to it ?


I'm using ffmpeg_kit_flutter package.


-
How can I overlay multiple images with fade-in using ffmpeg ? [closed]
2 juin 2024, par strangerDIn the working folder, there are
text1.png
text2.png
video.mp4
(all sizes 400x400)


I would like to overlay
text1 and text2
on this video.mp4 while fading them in.


If it was just one image, I could make it with the code below,
so I am currently researching ways to improve the code below.

ffmpeg -i video.mp4 -loop 1 -i text1.png -filter_complex "[1]fade=in:st=2:d=1:alpha=1[i];[0][i]overlay=x=0:y=0:shortest=1;" output.mp4


Below is the code I created based on the manual and information I found on Google.

ffmpeg -i video.mp4 -loop -i text1.png -i text2.png -filter_complex "[1]fade=in:st=2:d=1[i];[2]fade=in:st=2:d=1[y];[0][i]overlay=x=0:y=0:shortest=1[v1];[v1][y]overlay=x=0:y=0[v2]" -map "[v2]" output.mp4


However, this will result in an error message
Invalid file index 2 in filtergraph description
and the second image will be invalid.


How can I improve the overlay of two images ?


-
configure : Remove dcbzl check for e500v1 and e500v2 architectures
6 février 2014, par Peter Kreftingconfigure : Remove dcbzl check for e500v1 and e500v2 architectures
The DCBZL instruction is not available for the e500v1 and e500v2
architectures, but may still be recognized by the toolchain, so we
need to explicitly disable it for these architectures.References : PowerPC™ e500 Core Family Reference Manual (Freescale)
Found-by : Ståle Kristoffersen <staalebk@ifi.uio.no>
Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>