
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (100)
-
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 (7334)
-
Converting video from 60 FPS to 25 FPS without slowing it
30 août 2018, par BrykyzI am trying to encode video through
ffmpeg
in Linux system. Original video has 60 FPS and I need to change it to 25, but when I do so, video is slower than original.When I change it to 30, everything is fine (I guess it’s easier for encodder to play every second frame than compute it to 25). How can I achieve that video will have 25 FPS with same speed as original video ?
Currently I am using this command :
ffmpeg -i "test.mkv" -r 30 -vcodec libx264 -x264-params keyint=10:scenecut=0 -an -bsf:v dump_extra -video_size hd720 test2.mp4
Thank you for your help !
-
Install dependencies for Python ffmpeg library "av" (ImportError : libx264.so missing)
7 septembre 2018, par Make42In Python I installed the library
av
(which is a Python API for ffmpeg) into my conda environment withconda install -c conda-forge av=0.4.0
, but I when Iimport av
into my python script, I get the error messageImportError: libx264.so.138: cannot open shared object file: No such file or directory
on my Linux Kubuntu 14.4 machine. How can I resolve this issue ?
Wild guess : My Kubuntu repositories are a little old, so I cannot update ffmepg further and I guess this is why libx264 is missing, but am not sure.
-
Can I use ffmpeg to output JPEGs to a memory stream instead of a file ?
10 juillet 2024, par Andrew SimpsonI have a C# app. I have 100 JPEGs (for an example).



I can easily encode this into a video file.



When it has finished encoding on the client app I FTP upload to my server.



It would be 'neater' if I could not write the video file to a disc but instead write it to a memory stream (or array of bytes) and upload via web service perhaps ?



I have checked out the ffmpeg documentation but as a C# developer I do not find it natural to understand the C examples.



I guess my first question is it possible, and if so can anyone post an example code in C# ? At the moment I am using the process class in C# to execute ffmpeg.