
Recherche avancée
Autres articles (29)
-
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 -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (6533)
-
Evolution #3819 : Pouvoir demander un module PHP dans paquet.xml
13 juin 2017, par b bHeu, je viens de réaliser que cette modification permet de connaître pas mal de choses sur la machine qui héberge le site, exemple :
https://www.spip.net/local/config.txt
Et on retrouve une partie de ces infos dans le header des pages forcément.
Si l’admin d’une machine la configure pour qu’elle utilise des header silencieux en mode prod, cela ne servira presque à rien puisque SPIP va tout dévoiler sur la config PHP. Peut-être faudrait-il exclure ces infos d’une manière ou d’une autre, non ?
-
how to make video module with nodejs like facebook did with photos
31 mai 2017, par aharitJust wondering how to start ? The needs :
With around 10 photos, being able to produce a small video of 5-10sec, with animations for example (transition ?), i want to reproduce the facebook videos process if anybody know about that, which technical stack is the best, modules (ffmpeg, wrapper ffmpeg)(pyhton, nodejs).
Thx
-
nginx rtmp-module can't execute ffmpeg
22 août 2014, par NasirI am having an issue with nginx-rtmp-module exec ffmpeg command. i have followed the example on
www.github.com/arut/nginx-rtmp-module/home/junaid/bin/ffmpeg -f video4linux2 -i /dev/video1 -c:v libx264 -an -f flv rtmp://127.0.0.1:1935/myapp/mystream
the command is working fine in terminal
Config file :
rtmp {
server {
listen 1935;
ping 30s;
notify_method get;
application myapp {
live on;
allow play all;
exec_static /home/junaid/bin/ffmpeg -f video4linux2 -i /dev/video1 -c:v libx264 -an -f flv rtmp://127.0.0.1:1935/myapp/mystream;
}
}Error log :
http://www.codepad.org/enD4wlZ9I have tried :
- nginx running as root (have permission to execute ffmpeg)
- using ip instead of localhost
- using complete path to ffmpeg
- executing bash file (having ffmpeg and echo commands : echo commands execute just fine) from nginx
please help me resolve this issue