
Recherche avancée
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. -
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)
Sur d’autres sites (6170)
-
How to modify and save image using ffmpeg command in android
5 mai 2022, par Nishant Mishra"-i -vf colorchannelmixer=$s -acodec copy -pix_fmt yuv420p "
This command is not able to create or override the file in Android device.


-
Save video clip from longer video between two timestamps in Python cv2
14 juin 2022, par Elizabeth OrricoI have an hour-long video that I would like to save a clip between two timestamps— say, 11:20-11:35. Is the best way to do this frame-by-frame, or is there a better way ?


-
try to generate a frame from a video using FFmpeg command and try to save all frame in a upload directory
15 juillet 2022, par Rahul singhimport ffmpeg

import os

for video in os.listdir(video_path):

 if video.endswith(".mp4"):

 if not os.path.exists('upload'):

 os.makedirs('upload')
 os.chdir('upload')
 print(os.getcwd())
 command = f'ffmpeg -i {video} frame_%0d.jpg'
 os.system(command)



i am trying to generate frame using ffmpeg command and save frame in upload directory but not able to do it. can anyone help me with this. It will be great help. Thanks in advance.