
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (25)
-
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 -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)
Sur d’autres sites (6332)
-
Anomalie #3930 : Moteur de recherche : combinaison de DEUX mots avec accents ne retourne rien
1er octobre 2018, par - EquipementPour information, j’ai effectué les tests suivants sur SPIP 3.2.1 [23954] (installation neuve puis ajout d’une rubrique "secrétariat général" et de son article publié) :
- sous PHP 7.0 avec mariaDB : la recherche sur "secrétariat général" trouve bien la rubrique.
- sous PHP 5.6 avec mysql 5.6 : la recherche sur "secrétariat général" ne trouve pas la rubrique.Je précise que dans les deux cas, les bases sont en utf8 et que l’interclassement des tables est utf8_general_ci.
A titre de test (ce n’est pas une proposition de correctif), au début de la fonction inc_recherche_to_array_dist, j’ai ajouté :
- <span class="CodeRay"><span class="local-variable">$recherche</span> = ci_rewrite(<span class="local-variable">$recherche</span>);
- </span>
puis j’ai ajouté la fonction :- <span class="CodeRay"><span class="keyword">function</span> <span class="function">ci_rewrite</span>(<span class="local-variable">$chaine</span>){
- <span class="local-variable">$rewrite</span> = <span class="predefined">strtr</span>(
- <span class="local-variable">$rewrite</span>,
- <span class="string"><span class="delimiter">'</span><span class="content">@ÀÁÂÃÄÅÇÈÉÊËÌÍÎÏÒÓÔÕÖÙÚÛÜÝàáâãäåçèéêëìíîïðòóôõöùúûüýÿ</span><span class="delimiter">'</span></span>,
- <span class="string"><span class="delimiter">'</span><span class="content">aAAAAAACEEEEIIIIOOOOOUUUUYaaaaaaceeeeiiiioooooouuuuyy</span><span class="delimiter">'</span></span>
- );
- <span class="keyword">return</span> <span class="local-variable">$rewrite</span>;
- }
- </span>
Avec ce bout de code, la recherche sur "secrétariat général" trouve alors la rubrique, sous PHP 5.6 avec mysql 5.6.Remarque : j’ai aussi essayé avec la fonction translitteration de SPIP, mais cela ne marche pas.
-
create animated gif from video using ffmpeg and c#
18 décembre 2019, par kingI am trying to get animated gif from an video file.I cant create gif from below code. could any one help me in solving this problem.
Process ffmpeg; // creating process
string video;
string thumb;
// string text = System.IO.File.ReadAllText(@"C:\xampp\htdocs\h\myText.txt");
video = Page.MapPath("") + "\\o.avi";
thumb = Page.MapPath("") + "\\output\\o.gif"; // thumb name with path !
ffmpeg = new Process();
int num = 3;
int secpos = 1;
// ffmpeg.StartInfo.Arguments = "ffmpeg -i o.avi -vf scale=320:-1,format=rgb8,format=rgb24 -t 10 -r 10 output.gif"; // arguments !
ffmpeg.StartInfo.Arguments = " -i \"" + video + "\" -s 108*80 -ss " + secpos + " -t " + num + "\" -vf scale=320:-1,format=rgb8,format=rgb24 \"" + thumb + "\"";
ffmpeg.StartInfo.FileName = Page.MapPath("ffmpeg//ffmpeg.exe");
ffmpeg.Start(); // start !I think there is a mistake in ffmpeg.StartInfo.Arguments .
-
create animated gif from video using ffmpeg and c#
10 octobre 2014, par kingI am trying to get animated gif from an video file.I cant create gif from below code. could any one help me in solving this problem.
Process ffmpeg; // creating process
string video;
string thumb;
// string text = System.IO.File.ReadAllText(@"C:\xampp\htdocs\h\myText.txt");
video = Page.MapPath("") + "\\o.avi";
thumb = Page.MapPath("") + "\\output\\o.gif"; // thumb name with path !
ffmpeg = new Process();
int num = 3;
int secpos = 1;
// ffmpeg.StartInfo.Arguments = "ffmpeg -i o.avi -vf scale=320:-1,format=rgb8,format=rgb24 -t 10 -r 10 output.gif"; // arguments !
ffmpeg.StartInfo.Arguments = " -i \"" + video + "\" -s 108*80 -ss " + secpos + " -t " + num + "\" -vf scale=320:-1,format=rgb8,format=rgb24 \"" + thumb + "\"";
ffmpeg.StartInfo.FileName = Page.MapPath("ffmpeg//ffmpeg.exe");
ffmpeg.Start(); // start !I think there is a mistake in ffmpeg.StartInfo.Arguments .