
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (110)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (10208)
-
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 ! -
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.