
Recherche avancée
Médias (2)
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
Autres articles (80)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (12823)
-
FFMPEG.How to get audio stream from video and save it to disk on C++ [on hold]
27 avril 2018, par PeinI’ve found information about how to save video frames to the disk, but how to work with audio stream I can’t find any useful information. Maybe someone knows how to get the audio stream from video and save it to the disk
-
Load PNG from disk into AVFrame
15 février 2018, par Pedro PereiraI can’t seem to get this to work. This is what I got so far :
// Variables
int retOp; // for holding the operations results
// Initializes FFmpeg
av_register_all();
// Open image
uint8_t *buffer = NULL;
size_t buffer_size;
retOp = av_file_map("in.png", &buffer, &buffer_size, 0, NULL);
if(retOp < 0){
cerr << "Could not load image!" << endl;
system("pause");
return -1;
}
// Initialize AVFrame
AVFrame* frame = av_frame_alloc();
frame->width = 1920;
frame->height = 1080;
frame->format = AV_PIX_FMT_RGBA;The examples in the FFmpeg Doxygen don’t really help and there’s no support on the web. If there is let me know.
Uncompressed RGBA image.
-
Can I use ffmpeg to output jpgs to a numpy array in python without writing the files to disk etc ?
25 janvier 2018, par Srikanth SridarI have to read thousands of images in memory.This has to be done.When i extract frames using ffmpeg from a video,the disk space for the 14400 files =92MB and are in JPG format.When I read those images in python and append in a python list using libraries like opencv,scipy etc the same 14400 files=2.5 to 3GB.Guess the decoding is the reason ?any thoughts on this will be helpful ?