
Recherche avancée
Autres articles (71)
-
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 -
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 (7065)
-
Is Google Analytics Accurate ? 6 Important Caveats
8 novembre 2022, par Erin -
FFMpeg custom metadata not showing up using c++
22 novembre 2022, par Sourav DeyI am trying to add a custom metadata to a video recording using C++.

av_dict_set(&pMetaData, "title", "Cloud Recording", 0);

works fine and shows up in properties->details tab for the mp4 file in windows

But doing :

av_dict_set(&pMetaData, "random", "Cloud Recording", 0);

doesn't work.

Does anyone know what to do to write a custom metadata to a mp4 file using c++ ?


AVFormatContext *outContext;
av_dict_set(&outContext->metadata, "random", "Cloud Recording", 0);
avformat_write_header(outContext, null)



-
Ubuntu Compile C++ Application With ffmpeg and sdl2 [on hold]
24 novembre 2016, par Antonio GagliardiI’ve tried to compile a c++ application that use ffmpeg and SDL 2 in eclipse.
The application is simple :
#include <iostream>
extern "C"{
#include <libavutil></libavutil>imgutils.h>
#include <libavcodec></libavcodec>avcodec.h>
#include <libswscale></libswscale>swscale.h>
#include <libavformat></libavformat>avformat.h>
}
using namespace std;
int main() {
cout << "Test ffmpeg" << endl;
av_register_all();
return 0;
}
</iostream>Then I’ve set in project properties the library (-l) :
avformat
avcodec
faac
mp3lame
fdk-aac
vpx
x264
avdevice
avutil
swscale
rt
vorbisenc
va
pthread
dlThe path of ffmpeg build in libray search path (-L)
the ffmpeg include path (-l)I’ve also set the dialet to c++11
When i try to compile, I receive lots errors.
By googling i found that the problem can be the library order include.Any help is appreciated.