
Recherche avancée
Autres articles (70)
-
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
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 -
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 (10268)
-
UTF-8 source files are not supported in avisynth
22 septembre 2019, par Hadi RasekhI use avisynth to demux video from audio.
When I usex = "m.mkv"
ffvideosource(x)It work correctly but when I change my video filename to a UTF-8 one and my script as :
x = "م.mkv"
ffvideosource(x)I Got the following error :
failed to open for hashing avisynthI found a link (UTF-8 source files are not supported) who tell UTF-8 file name not work in avisynth, and to correct the problem, it said :
specify the parameter utf8=true when calling ffvideosource, save the script as UTF-8 without BOM and then see if that works.
But, I couldn’t solve the problem. As I Open the script in the notepad and save it in utf-8 format, I got the following error :
UTF-8 Source files are not supported, re-save script with ANSI encoding
How can I solve the problem, How can I run my script with a UTF-8 filename ?
-
UTF-8 source files are not supported in avisynth
18 août 2014, par Hadi RasekhI use avisynth to demux video from audio.
When I usex = "m.mkv"
ffvideosource(x)It work correctly but when I change my video filename to a UTF-8 one and my script as :
x = "م.mkv"
ffvideosource(x)I Got the following error :
failed to open for hashing avisynthI found a link (UTF-8 source files are not supported) who tell UTF-8 file name not work in avisynth, and to correct the problem, it said :
specify the parameter utf8=true when calling ffvideosource, save the script as UTF-8 without BOM and then see if that works.
But, I couldn’t solve the problem. As I Open the script in the notepad and save it in utf-8 format, I got the following error :
UTF-8 Source files are not supported, re-save script with ANSI encoding
How can I solve the problem, How can I run my script with a UTF-8 filename ?
-
Video output desaturation after compression with ffmpeg
7 avril 2015, par DriesThis is a followup question to this : SO question
I’ve found out that if I encode the input with
ffv1
to an .mkv file the video isn’t desaturated. Problem with this is that the file is very large.
I’ve learned about this encoder here : Forum linkThe information you can find there is what I’m currently using to encode my video. Now, since I want the video to be much smaller I thought I could reencode it so it will be compressed. I added this new ffmpeg command :
ffmpeg -i INPUT.mkv -vcodec mpeg4 -vtag xvid -q:v 1 OUTPUT.avi
This works just fine but the problem is that once again the video is desaturated as if I’m just encoding to the mpeg format.
Is there something I can change to this so I don’t have the video being desaturated ? If you’re going to recommend another codec, I need it to be one with the LGPL license. (I’ve also tried encoding with libx264 codec with this also desaturated my video)
Thanks in advance !