
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (97)
-
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
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" (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (9654)
-
Fastest way to create long video from 1 image with ffmpeg
12 février 2015, par johnvantesWhat is the fastest way to create a video with long duration (1 hour), from a single image ?
Here is what I have now :ffmpeg -loop 1 -i image.jpg -c:v libx264 -preset ultrafast -t 3600 -pix_fmt yuv420p -vf scale=640:480 image.mp4
But it’s taking too long in my case, around 40 minutes. The image size I am using is
800KB
.Many many thanks in advance !
-
DVD Protection Test on Batch on MacOSX [closed]
30 mars 2014, par jonhatan smithI work on Mac and PC so this question is for both OS.
I'm new to batch scripting and I'm wondering if there is any way to test if a DVD (with chapters and titles and videos) is protected or not.
What I mean by protected, is any kind of protection that could alterate the ripping of my DVD.
After testing if the DVD is protected, the script should put the result into a variable, to later perform another operation.the script process could look like that :
Is the Drive X contains A DVD?
if No--->Pause;
else if Yes--->Continue;
else error;
Is the DVD Protected?
if No--->open HandBrake.app;
else if Yes--->open program.app;
else error;Thank you in advance for any replies.
-
FFmpeg batch script
13 juin 2023, par Memo CanI have this batch script running perfectly on Windows :



C:\ffmpeg\bin\ffmpeg -i http://ipaddress/stream -deinterlace -c:v libx264 -pix_fmt yuv420p -s 960x540 -preset superfast -vb 1200k -maxrate 1200k -r 30 -g 60 -bufsize 8000k -c:a aac -b:a 64k -ar 44100 -ac 2 -f flv rtmp://ipaddress/live/




Sometimes ffmpeg crashes, how can I edit the batch script or what can i add to the batch file to restart the stream.



Thanks advance !