
Recherche avancée
Autres articles (83)
-
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 (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (15127)
-
Using v4l2m2m hardware accelaration on ffmpeg c ++ progrraming [closed]
19 mars 2021, par mohamed amcharhalI want to use this v4l2m2m hardware accelaration on my raspberry but on c++ programming, i can't find any example for this. it works on ffmpeg command line by setting -c:v h264_v4l2m2m.


command line I used with ffmpeg


ffmpeg -c:v h264_v4l2m2m -i "rtsp ://..." -f null toto.null


-
How to use the hardware acceleration for ffmepg on m1-max ?
10 février 2023, par ThoughtfulHackingSince there aren't m1 builds available from ffmpeg.org, I had to compile my own. Obviously, I'd like to get the best possible performance.


- 

- Does ffmpeg use the "Hardware-accelerated H.264" on the m1 max ?
- Is there anything I need to do, like compiler flags, to get it ?
- Any switch at run time ?
- How can I verify that it's being used ?










To compile ffmpeg, I just did the basics :


./configure --prefix=/tmp/ff --enable-gpl --enable-nonfree --enable-libx264
make
make install



For x264, I just did
./configure —prefix=/tmp/ff
make
make install


to run :


ffmpeg -i random.wmv -c:v libx264 -preset ultrafast -c:a aac output-ultra.mp4 



Anything else I should be doing ?


-
How to use hardware acceleration with ffmpeg
5 avril 2018, par ixSciI need to have ffmpeg decode my video(e.g. h264) using hardware acceleration. I’m using the usual way of decoding frames : read packet -> decode frame. And I’d like to have ffmpeg speed up decoding. So I’ve built it with
--enable-vaapi
and--enable-hwaccel=h264
. But I don’t really know what should I do next. I’ve tried to useavcodec_find_decoder_by_name("h264_vaapi")
but it returns nullptr.
Anyway, I might want to use others API and not just VA API. How one is supposed to speed up ffmpeg decoding ?P.S. I didn’t find any examples on Internet which uses ffmpeg with hwaccel.