
Recherche avancée
Autres articles (77)
-
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (14149)
-
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.
-
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 !
-
The bottom of video decoded by ffmpeg library is not good
29 février 2020, par Mr. JangI made a MFC program that plays a video stream.
The video stream comes from RTP and codec is H.264.
I used ffmpeg library.
My problem is the bottom of my video play is not good.
Not good means it has blur.
The resolution of the video is 1920×1200.
I opened H.264 codec using avcodec_find_decoder(AV_CODEC_ID_H264) and didn’t set any option.
What should I do to solve this problem ?
Thank you in advance !