
Recherche avancée
Autres articles (66)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer 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 (14627)
-
How to demux an MP4 video and get its segments ? [on hold]
21 août 2019, par zergon321I have an MP4 video. I want to demux it and then get its segments to have an mpd file like this. How to do it with MP4Box or ffmpeg ?
-
Linphone Android Import and Build
29 novembre 2013, par AppleDroidI am working on Linphone Library and using GITHUB repo and downloaded the zip file with Download Zip button.
Now when i go through the README file i saw that i need to run
./prepare_sources.sh
script then i ran it on terminal but it asks for file to patch asNow when i opened the folder inside submodules/externals/ffmpeg — It's completely empty
and other folders are also empty.
But on GitHub also i saw it with some kind of black folder which i can't select.
I am stuck here ? should i do how can i get all these files into my directory so that i can make the build.One more thing Should i import this downloaded Zip into my eclipse it shows me these projects which one should i import (Should i import it after i download the Zip from Github or should i import it after running all the scripts to make the build on terminal and then import it in eclipse) ?
Need Help .
-
VideoWriter can't generate .avi file in C [closed]
7 décembre 2022, par JohnChinI encounter the problem as the title now. The purpose of my code is using lots of images to generate a video. Here is my code :


Mat frame = imread(img_path[0], -1) ;


int codec = VideoWriter::fourcc('M', 'J', 'P', 'G');
double fps = 30.0;
Size sizeFrame(frame.cols, frame.rows);

VideoWriter OutputVideo(output_video, codec, fps, sizeFrame, TRUE);

int i = 0;
while (i != flag_img) {
 frame = imread(img_path[i], -1);
 resize(frame, frame, Size(frame.cols, frame.rows));
 OutputVideo.write(frame);
 i++;
}
OutputVideo.release();
destroyAllWindows();



PS : img_path is the directory of images (ex : ../database/RushPixar/random/001.png)


After running, there's no .avi file in my folder. Then I see the terminal, it displays there are lots of .dll files I lost and some .dll files I unloaded.


list of .dll files of loading failed :


- 

- opencv_videoio_ffmpeg460_64d.dll
- opencv_videoio_gstreamer460_64d.dll
- opencv_videoio_intel_mfx460_64d.dll
- opencv_highgui_gtk460_64.dll
- opencv_highgui_gtk3460_64.dll
- opencv_highgui_gtk2460_64.dll














list of .dll files of unloading :


- 

- opencv_videoio_msmf460_64d.dll
- opencv_videoio_ffmpeg460_64.dll






terminal after running code
Is there any solution for the problem I encoutering ?


Finding the solution in internet, but no one had this problem before.