
Recherche avancée
Médias (2)
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
Autres articles (66)
-
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 (12046)
-
Ghosts after converting video from .mp4 mpeg4 codec to webm
15 avril 2014, par KotkotI've got problem converting from mp4 to webm.
I use this ffmpeg command to convert from mp4 to webmffmpeg -i output.mp4 -acodec libvorbis -vcodec libvpx -b:v 3M -qmax 63 -crf 0 -ac 2 -ar 44100 -r 30 -s 640x640 output.webm
Result as you can see it on output.webm in some frames contains ghost images of previous frames. How to fix it ?
I do generate the original movie manually using xuggler and perhaps I can change something
in the original movie to make conversion work properly.https://drive.google.com/file/d/0BwC6Z2bpT5deZ0xTaTNyQnlGU0U/edit?usp=sharing
-
How to rescale input video then scale and overlay watermark with Ffmpeg ?
22 juin 2017, par CurlyFroHow to rescale input video then scale and overlay watermark with Ffmpeg ?
I’ve tried both these commands and they don’t work. Can someone help me with the process ?
-vf \"movie={watermarkPath}[watermark]; [in] scale=720:-1 [scale]; [scale] [watermark] overlay=main_w-overlay_w-10:10 \"
-filter_complex \"[0:v]scale={wm.Item3}:{wm.Item4}[bg];[bg][1:v]movie='{watermarkPath}'[wm];[wm][0] scale2ref={wm.Item1}:{wm.Item2}[wm] [v];[wm] setsar=1[logo];[v] [logo] overlay=main_w-overlay_w-10:10\" -
ffplay - error seeking
23 février 2018, par francisI was trying to get top video and bottom audio waveform. However i couldn’t scrub/seek back and forth with left/right mouse. A normal ffplay command works for seeking.
I got the error while seeking in my shell running :
Example1
ffplay -f lavfi \
"amovie=abc.mp4, asplit [a][out1]; [a]showvolume=f=255:b=2:w=720:h=68 [av]; \
movie=abc.mp4, split [v][out2]; [v]scale=720x360[vs]; [vs][av]vstack=2"Example2
ffplay -f lavfi \
"amovie=abc.mp4, asplit [waves][out1]; [waves]pan=1c|c0=c0,showwaves=s=720x100[av]; \
movie=abc.mp4, split [v][out2]; [v]scale=720x360[vs]; [vs][av]vstack=2"