
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 (76)
-
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
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 (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (8141)
-
Integrate FFmpeg on iOS [on hold]
11 décembre 2018, par CalebI have referred links, still I have confusion. If any one has an idea then please share with me. I am searching to implement FFmpeg on iOS for GIF , as like the example given for android,
Please refer this =>
https://medium.com/wolox-driving-innovation/https-medium-com-wolox-driving-innovation-the-power-of-ffmpeg-on-android-ef6e0c01d59fI have referred these links,
https://github.com/DeviLeo/DLGPlayer
https://github.com/ElfSundae/FFmpeg-iOS-build
https://github.com/kewlbear/FFmpeg-iOS-build-script
what is the correct way to achieve this. Any help would be highly appreciated.
-
how to customise images in frames of video using ffmpeg
4 novembre 2014, par user946646I have video with static pictures and text. I need to update those static pictures with dynamic pictures and text. In the video, pictures are moving. Let’s say "Welcome Kavya" text is moving from left to right for first 1 second etc. I extracted frames of video using this
command :ffmpeg -i /var/www/html/tutorials/v1.mp4 -r 20 -f image2 /var/www/html/tutorials/ffmpeg_temp/%05d.png
Now I have 20 frames, and in each frame "Welcome Kavya" text is in different coordinates. I am taking each frame and updating the dynamic text according to static text coordinate and creating new video with dynamic content. This takes so much time and cumbersome.
The video has many other texts and pictures to customize. Please advise me if any other way to do this.
-
Next drawtext clears the previous one ffmpeg
27 août 2021, par Макс Шульдинерffmpeg.exe -i ffmpeg_inputs/zheltiy_chelik.mp4 -vf "[in]drawtext=fonts/Temporarium.otf:text='r':fontcolor=orange:fontsize=100:x=(w-text_w)/2+0:y=0:enable='between(t,0, 11)', drawtext =fonts/Temporarium.otf:text = 'r':fontcolor=orange:fontsize=100:x=(w-text_w)/2+20:y=0:enable='between(t,11, 22)', drawtext =fonts/Temporarium.otf:text = 'r':fontcolor=orange:fontsize=100:x=(w-text_w)/2+40:y=0:enable='between(t,22, 33)'[out]" ffmpeg_outputs/test2.mp4 -y 



There is such a ffmpeg line. Its meaning is to draw a letter 20 pixels to the right of the current position of the word every 11 seconds, and in this way "write the word". But here's the problem - when the second letter starts to render, it overwrites the first, and the third, respectively, overwrites the second. The string seems to have prescribed [in] and [out] but does not help, maybe someone has ideas