
Recherche avancée
Médias (1)
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
Autres articles (34)
-
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
L’utiliser, en parler, le critiquer
10 avril 2011La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
Une liste de discussion est disponible pour tout échange entre utilisateurs. -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...)
Sur d’autres sites (6871)
-
ffmpeg mp4 cut from correct point | without encode
3 mars 2018, par sword1stI’m using this this command for cut my mp4 video :
ffmpeg -i clip.mp4 -ss 00:00:25 -to 00:01:20 -c copy cutted.mp4
But there is a problem with this code. My "cutted" clip has black video for a couple seconds and it’s have sync problem on editing software. When i tweak the first parameter -ss like 00:00:24 ... 00:00:23 .... 00:00:26 etc when i found the right position it doesn’t have any black frame or sync problem. I want to learn how can i learn all of this correct times for my video ? I don’t know what should i call these points. Gop or anything else. Is there any solution built-in ffmpeg to learn this times so i can cut them without any corruption ? Thanks !
-
I am trying to add draggable text view on video
24 septembre 2021, par NaveedI am trying to add draggable textview on video but unable to get
cordinates of textview according to the video I am using ffmpeg for
adding text to video.


val xPos = width?.let {
 (binding.edtXPos.text.toString().toFloat().times(it)).div(100)
 }
val yPos = height?.let {
 (binding.edtYPos.text.toString().toFloat().times(it)).div(100)
 }
Log.e(TAG, "addTextProcess: x=$xPos and y=$yPos", )



I entering percentage of x and y axis to put but I want to get position of dragable textview cordinated according to video pixels.


-
FFmpeg is slowing down a video in output and I cannot figure out why
23 août 2020, par S MI'm making a python program that uses FFmpeg for I/O. Right now the problem I'm getting is an input video is 3s but output is 9s. Both line up if I stretch them out manually in premiere pro but I want to fix this with ffmpeg. I know my array is 223 frames and I only give FFmpeg the argument "-r 60", but when the command is run and the video is made, it repeats every frame about 3 times, making the resulting video much longer. I can't just add command to make it play video 3 times faster because its not exactly 3 (I don't know what the exact multiplier for difference is). Is there anything I can do to make it not repeat frames ?


Edit : I'm using skvideo.vwrite so I'm not really sure what's happening with FFmpeg but this is the code I have :

skvideo.io.vwrite("out.mp4", arr, outputdict = '-r' :'60')

Where arr has shape (854, 256, 256, 3)