
Recherche avancée
Autres articles (60)
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
Soumettre bugs et patchs
10 avril 2011Un logiciel n’est malheureusement jamais parfait...
Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
Si vous pensez avoir résolu vous même le bug (...) -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
Sur d’autres sites (7560)
-
JAVE Library - NullPointerException while trying to convert .mp3 to .ogg
12 décembre 2013, par XenociderI'm trying to make a basic program in java that will convert a .mp3 file into a .ogg file. I am on a Mac using a ffmpeg that was compiled for it from ffmpegmac.net. When I try to run my code I get a NullPointerException. I also noticed that .getAudioEncoders() return an empty string perhaps this has something to do with the error.
Exception in thread "main" java.lang.NullPointerException
at java.lang.ProcessBuilder.start(ProcessBuilder.java:1010)
at java.lang.Runtime.exec(Runtime.java:615)
at java.lang.Runtime.exec(Runtime.java:483)
at it.sauronsoftware.jave.FFMPEGExecutor.execute(FFMPEGExecutor.java:103)
at it.sauronsoftware.jave.Encoder.encode(Encoder.java:829)
at it.sauronsoftware.jave.Encoder.encode(Encoder.java:713)
at Main.main(Main.java:33)This is my code I use :
public static void main(String[] args) throws IllegalArgumentException, InputFormatException, EncoderException {
Encoder encoder = new Encoder(new FFMPEGExecutableLocator());
//Encoder encoder = new Encoder();
EncodingAttributes encodingAttributes = new EncodingAttributes();
AudioAttributes audioAttributes = new AudioAttributes();
String[] audioEncoders = encoder.getAudioEncoders();
System.out.print(audioEncoders.length);
for (int i = 0; icode>Any ideas or help would be appreciated ! Thanks !
-
Sending metadata per frame with libavcodec
24 janvier 2014, par user3058248I'm trying to send some metadata with every frame that I encode.
I've tried this :Encoder side :
AVDictionary *myMeta = NULL;
int ret = av_dict_set(&myMeta, "temp_data", "test", 0);
if (ans < 0)
{
cout << "Error: " << ret << endl;
}
av_frame_set_metadata(frameToEncode, myMeta);Decoder side :
AVDictionaryEntry *e;
AVDictionary *dict = NULL;
dict = av_frame_get_metadata(decodedFrame);
if (dict != NULL)
{
if (e = av_dict_get(dict, "temp_data", NULL, AV_DICT_IGNORE_SUFFIX)) {
cout << e->value << endl;
}
}I'm using x264 to encode.
After I decode the data, the metadata member of decodedFrame is NULL.Any ideas ?
Thanks.
-
Piwik at Free and Open Source Software Conference
26 août 2013, par thomas — CommunityLast weekend Fabian and Thomas from the Piwik team have represented Piwik at the 8th FrOSCon in St. Augustin (Germany, near Cologne).
At our booth we handed out Piwik brochures, our new awesome Stickers, and of course sweets. Many Piwik users came by and we were glad to gather some interesting feature ideas and feedback. Thank you ! We also helped a few people troubleshoot issues on their servers and we introduced Piwik to many visitors stopping by the booth.
We cannot put into words what the incredible FrOSCon team and all the people who helped have achieved. Thank you for making this conference possible ! We really enjoyed FrOSCon and we hope to be there next year again.