
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 (96)
-
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 (...) -
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 -
Submit enhancements and plugins
13 avril 2011If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.
Sur d’autres sites (12032)
-
Anomalie #3504 : anomalie dans cvt_autosave : les purges ne se font pas
24 juillet 2015, par cedric -OK, bien vu sur le timestamp en ms en JS vs s pour PHP.
Par contre je réponds en vrac sur les autres points :- si un utilisateur revient 1 an après, il n’aura plus de session du tout, car les vieilles sessions sont purgées, meme si on a ce bug dans la purge de l’autosave qui ne concerne en fait que les utilisateurs qui se connectent régulièrement et conservent ainsi leur session vivante.
- purger les sessions autosave dans charger() est une très mauvaise idée en terme de charge serveur. En effet charger() est executé à chaque affichage du formulaire et donc de la page, elle doit donc rester le plus light possible sous peine de pénaliser la charge serveur et de dégrader fortement les perfs du site
- on peut améliorer la purge en l’executant a chaque traiter() si l’utilisateur a une session. Le scenario que tu imaginais devient ainsi très peu plausible car il suppose que l’utilisateur ne valide aucun formulaire nulle part pendant un long moment pour qu’on arrive a lui ressortir un vieil autosave
- on ne peut pas mettre de _dist sur les fonctions : ce sont des pipelines, non surchargeables
-
ffmpeg stream rc buffer underflow
5 août 2015, par finder2At the moment I’m setting up a screen-sharing platform with the opensource tool ffmpeg / ffserver. At the beginning of the sharing everything is fine. After around 1 1/2 minutes I get the following exception in the output.
[flv @ 0x3a47aa0] rc buffer underflow
[flv @ 0x3a47aa0] max bitrate possibly too small or try trellis with large lmax or increase qmaxI’ve tried to set an verry high lmax & qmax but this hasn’t changed any thing.Additionally I’ve tried to increase the bitrate , the buffersize and the bitrate.
I use the following command with ffmpeg :
ffmpeg -f x11grab -s 1920x1080 -r 20 -i :0.0+1680,0 "http://localserver.de:8080/input1.ffm"
The config file for the ffserver is :
HTTPPort 8080
HTTPBindAddress 0.0.0.0
MaxHTTPConnections 2000
MaxClients 1000
MaxBandwidth 50000
CustomLog -
<feed>
File /var/ffserver/input1.ffm
FileMaxSize 20M
ACL allow *FROM IP* *TO IP*
</feed>
<stream>
Feed input1.ffm
Format swf
VideoCodec flv
VideoFrameRate 20
VideoBufferSize 8000
VideoBitRate 250
VideoQMin 1
VideoQMax 5
VideoSize 640x400
PreRoll 0
StartSendOnKey
NoAudio
</stream>An other streaming format would also be a possibility but I didn’t know which are possible for live-streaming.
Thanks in advanced
efinder2
-
ffmpeg : How do I accept inputs from other programs ? [on hold]
18 mai 2017, par B Hok@echo off
for %%a in (*.mp3) DO ffmpeg -i "%%a" -f image2 -loop 1 -r 30 -i img.png -shortest -c:a copy -c:v libx264 -crf 23 -preset veryfast -vf scale=1280:720 -pix_fmt yuv420p "%%a.mp4"
pauseThis code at the moment loops everything in the folder and combines the mp3 with img.png into a mp4. However, I want the GUI supply the inputs instead. How do I do that ?