
Recherche avancée
Autres articles (48)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (7782)
-
Anomalie #3675 (Nouveau) : fsockopen => lenteur dans inc/queue
6 février 2016, par Gilles VINCENTSur certains hébergeurs, l’utilisation de fsockopen() à la place de curl() ralentit beaucoup les pages.
Certains utilisateurs désactivent le bloc dans queue_affichage_cron()
cf. http://forum.spip.net/fr_244583.html#forum263615
Mais avant ça, il maudissent le jour où ils sont passé de la version 2.1 à la version 3.x :/Est-ce qu’il n’y a pas de meilleure stratégie que celle actuelle ?
Par exemple, ne pourrait-on pas avoir une variable statique (ou dans un fichier lu par SPIP) qui soit modifié quand on détecte qu’une méthode tombe en timeout ?
Quel était l’inconvénient de la méthode de l’image de qqs pixels ?Wordpress n’utilise pas de socket pour son API Http, mais curl et stream.
https://core.trac.wordpress.org/browser/tags/4.4.2/src/wp-includes/class-http.php#L308Il faudrait regarder d’autres frameworks..
-
Révision 20697 : Micro-modif dans la page de contrôle des forums :
3 juillet 2013, par esj -- mettre un ancre vers le message de forum même dans le cas interne ;
* prendre en compte les noms de site de longueur 3 ;
* decouper en 2 la fonction principale afin de permettre facilement une surcharge, notamment l’argument "type".
- mettre un ancre vers le message de forum même dans le cas interne ;
-
How to convert multiple files with ffmpeg to GIFs [closed]
26 juillet 2020, par mriisaI found in this forum Convert-mp4-to-gif at good batch-code for converting videos to GIF-files by just dragging and dropping the files onto the batch files. The problem is I can only drop one file at the time, whereas I have maybe hundres of files, which I just want my computer to work on.



The code is as seen here :



@echo off
::** create animated GIF w/ optimized palette
::
:: https://ffmpeg.org/ffmpeg-all.html#gif-2
:: http://blog.pkh.me/p/21-high-quality-gif-with-ffmpeg.html
:: http://superuser.com/questions/556029/how-do-i-convert-a-video-to-gif-using-ffmpeg-with-reasonable-quality

if not exist "%~dpnx1" goto :EOF
cd "%~dp1" 

::** generate palette
@echo on
@echo.
"c:\program files\ffmpeg\bin\ffmpeg.exe" ^
 -v warning -i "%~nx1" ^
 -vf "palettegen" ^
 -y tmp-palette.png

::** generate GIF
@echo.
"c:\program files\ffmpeg\bin\ffmpeg.exe" ^
 -v warning -i "%~nx1" ^
 -i tmp-palette.png ^
 -lavfi "[0][1:v] paletteuse" ^
 "%~n1.gif"
@echo off

del /q tmp-palette.png

if errorlevel 1 pause
goto :eof




I have absolutely no idea how to program batch files, and this code was just something I found online which worked for me. Can anybody help me adding the needed code for making me able to drag and drop multiple files ?