
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (89)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (10263)
-
Extract individual frames as a buffer from a video
30 août 2022, par mgoI'm trying to process a video using tensorflow in node.js (i.e. on the server - I don't have a web page). I need to process each frame in the video individually. I see some people are using ffmpeg to generate individual image files from the video but that seems wasteful as it creates files on the filesystem. I would prefer to grab each frame as a base64 string in memory. I've got this working using OpenCV4Node but am wondering if there are any lighter weight solutions. Is anyone already doing this ? Any help would be appreciated :-)


-
How to split a video into individual encoded frames ?
23 mai 2015, par AsikSource video is H264 in an mp4 container, I’m trying to split it into individual encoded frames. I tried with the following command line :
ffmpeg -i "input.mp4" -f image2 "%d.h264"
But that creates jpegs with the extension "h264", rather than actual H.264 frames.
-
Stuck in deadend while compiling ffmpeg with nvidia CUDA support on Ubuntu 18.04 and GeForce GT 730
24 février 2019, par MarkoI want to compile ffmpeg with CUDA support, on Ubuntu 18.04, and my graphics card is GeForce GT 730 (so far I have not CUDA programming experience).
Here nvidia claims that it has at least some transcoding support.I have cloned https://git.ffmpeg.org/ffmpeg.git and as I understand I also need to build and install nv-codec-headers.
But there in the README, they say that minimum driver version for Linux is 418.30 or newer. So I went to nvidia site to download driver and after selecting my card I got this download link. So the driver version is high enough it seems. But when I try to install it I get message that this device will be ignored by that driver and that it is supported by legacy driver 390.xx (which is version I can install with apt).
Is something wrong with nVidia, why are they offering me driver that is cannot be used for this device ?I’ve installed 390.xx driver using
ubuntu-drivers autoinstall
and built ffmpeg, but when I try to run it I get this error : Cannot load cuvidGetDecodeStatus [h264_cuvid @ 0x562a86dbc680] Failed loading nvcuvid.I suppose it is because of driver ?
So, what can I do to unstuck myself ?