
Recherche avancée
Médias (91)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (112)
-
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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 (12933)
-
Problem with Getting Output with Accents When Using PHP exec Command with ffprobe
25 septembre 2020, par user5919866I am retrieving the output of ffprobe with PHP exec command to get information from mp3 files. The problem is that if there is any text in the output containing accents or apostrophes, then I don't get those displayed.


I am running PHP 7.3.19 on Debian 10. The output locale -a from the commandline is :


C
C.UTF-8
en_US.utf8
POSIX



I have tried several things in my PHP script such as :


$cmd = 'LANG=\"en_US.UTF8\" ffprobe -loglevel error -show_entries format=duration:format_tags -of json "' . $FinalFilenamePath . '"';
exec($cmd, $output, $return);



and :


$cmd = 'env -i ffprobe -loglevel error -show_entries format=duration:format_tags -of json "' . $FinalFilenamePath . '"';
exec($cmd, $output, $return); 



and :


$cmd = 'LC_ALL=en_US.UTF-8 ffprobe -loglevel error -show_entries format=duration:format_tags -of json "' . $FinalFilenamePath . '"';
exec($cmd, $output, $return);



So, how can I be sure that when I run the ffprobe command via PHP's exec, I can display characters such as accents, apostrophes, etc.


-
avcodec/hevc_ps : fix the problem of memcmp losing effectiveness
29 mars 2024, par Tong Wuavcodec/hevc_ps : fix the problem of memcmp losing effectiveness
HEVCHdrParams* receives a pointer which points to a dynamically
allocated memory block. It causes the memcmp always returning 1.
Add a function to do the comparision. A condition is also added to
avoid malloc(0).Reviewed-by : James Almer <jamrial@gmail.com>
Signed-off-by : Tong Wu <tong1.wu@intel.com>
Signed-off-by : James Almer <jamrial@gmail.com> -
FFmpeg problem while writing streams to file
23 septembre 2011, par NoviceAndNoviceI finally "able" to write video stream packets to a file using the function
av_interleaved_write_frame(outputContext, &packet);
But after a short period of time i got this error :
Application provided invalid, non monotonically increasing dts to muxer
in stream 0: *numberX* >= *numberY*Anybody has any idea, what may cause this ? And how to fix it ?
Best Wishes