
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 (59)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
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 -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...)
Sur d’autres sites (6471)
-
Anomalie #3235 : SPIP (3) génère la classe "spip_out" sur des liens relatifs
4 octobre 2014, par RastaPopoulos ♥Je viens de tester cette liste de lien :
Un lien intelligent vers la rubrique 1 Un lien bête vers la rubrique 1 Un lien vers le RSS Un lien vers le plan du site Un lien vers un site externe
Le site externe a bien "spip_out".
Le lien intelligent a bien "spip_in".Mais tous les autres n’ont plus rien ! Ni l’un ni l’autre. C’est déjà ça qu’ils n’aient pas "spip_out", mais ce sont bien des liens internes ! Si dans le thème du site je style différemment "spip_in", alors ces liens qui sont bien internes ne s’afficheront pas correctement. Il faut donc effectivement compléter les tests sur ce point.
Ce qui est compliqué c’est que dans les tests il y a le cas d’un sous-dossier ("/tests/") et là on peut effectivement considérer que ce n’est pas forcément interne (il peut y avoir un autre site différent en sous-dossier). En revanche tous les liens de ma liste ci-dessus sont bien internes.
-
Codeigniter - exec ffmpeg (win 8.1 with xampp)
31 août 2014, par xelAi want to merge some image files (jpeg,png) to a short stop motion video clip.
The User can upload the images and the webapp will do a short movie... Thats the plan.
I have tried some variations i found in www -> exec, shell_exec
The ffmpeg.exe is in my root Folder (xampp/htdocs/xxx/ffmpeg.exe)
I put a function in my controller to do the clip.
public function render() {
// Save the Session ID into the variable sessionId
$sessionId = $this->session->userdata('session_id');
// Path to the Userimage-Folder
$image_path = "C:\xampp\htdocs\xxx\uploads\$sessionId";
$command = "C:\xampp\htdocs\xxx\ffmpeg -framerate 1/5 -i".$image_path."/img_%03d.JPG -c:v libx264 -r 30 -pix_fmt yuv420p out.mp4";
exec($command);
}The images are already in the same format and have a consecutive numbering.
I’am still a beginner, so please help me.
regards :)
-
how to convert any audio file to wav on server side with node.js [on hold]
9 juin 2014, par pufmaigremy dear stackoverflow
I spent hours looking for an efficient and pretty way to transcode audio on server side, and I found a lot of informations... actually too much informations.
Sox for Node.js looks fine but there are not so much documentation, I was unable to convert a mp3 to wav with it :
https://www.npmjs.org/package/sox
Then fluent ffmpeg sounds good but I have the feeling I will loose a lot of time to achieve my goal with it :
https://github.com/fluent-ffmpeg/node-fluent-ffmpeg
and then i found some more obscure stuff like those ones :
https://github.com/andrewrk/node-plan-transcode
https://github.com/benvanik/node-transcoding
I’m not sure it’s really the "stackoverflow spirit" but I’m asking you wich way would you choose to achieve my goal because I’m feeling lost in the codec jungle.
thanks in advance !! love :)