
Recherche avancée
Médias (33)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (96)
-
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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (6423)
-
How to use subtitles filter to a video VFR ( variable frame rate ) video ? [migrated]
14 février 2019, par iaaflaafcI have created a VFR (variable frame rate) video from a list of images by using the following
ffmpeg
command.ffmpeg -f concat -i concat.txt -vsync vfr -pix_fmt yuv420p output.mp4
where the
concat.txt
is a text file which contains the list of the image locations and durations in the below format.file image01.png
duration 3
file image02.png
duration 5
file image02.pngI have a subtitle file (
.srt
file) that I would like to add to the generated video by using the subtitles filter.I tried to use the
subtitles
filter by running the following commandffmpeg -i output.mp4 -codec:a copy -vf subtitles=subtitles.srt -max_muxing_queue_size 4096 outputWithSubtitles.mp4
I find that the resultant output file does not show any subtitles.
I find that if instead of VFR video if constant frame rate video is generated, then this issue is not observed i.e., during the generation of the first video from images if
-vsync vfr
option is not used, then a constant frame rate video is generated and using subtitles filter works.Is there a way to use the subtitles filter on a VFR video ?
-
Revision 35682 : maj invalideur
28 février 2010, par brunobergot@… — Logmaj invalideur
-
Creating image overlay on video like tiktok on a video in flutter [closed]
12 octobre 2020, par Sarthak SinghalI am trying to create an app in flutter in which user can add image on a video like the given screenshot. The user should be able to move the image widget anywhere on the screen, resize it, and rotate it also. When this is done, the image should be merged on the video.


For now I have used Stack and MatrixGestureDetector to let the user move the images on the screen.


I want to know how to merge this image along with the exact scale, rotation and position as seen on the screen.


Also if I am going in wrong direction then please guide me the right way to do image overlay on a video in flutter like that of tiktok or snapchat.