
Recherche avancée
Médias (2)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (54)
-
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (8437)
-
How to convert 1920x1200 HD video from MOV to MP4 without change of the original size [on hold]
25 août 2013, par user2618501I have a 1920x1200, 50 fps MOV file that I want to convert to MP4. I tried several converters on Mac but all create a MP4 file with 1728x1080 resolution.
I also tried to convert the video using ffmpeg. This created a very small MP4 file with the desired size but with a horrible quality. I used
ffmpeg -i my.mov -r 50 1920.mp4
Is there some better way to convert MOV to MP4 while keeping the original resolution and quality ?
-
FFmpeg - C - Encoding video - Set aspect ratio
22 août 2013, par KnossosI am decoding a video from mp2 and encoding to mp4.
The original file :
Video: mpeg2video (Main) ([2][0][0][0] / 0x0002), yuv420p, 720x576 [SAR 64:45 DAR 16:9]
The resulting file :
Video: mpeg4 (Simple Profile) (mp4v / 0x7634706D), yuv420p, 720x576 [SAR 1:1 DAR 5:4]
As you can see, the resolution has not changed, but the aspect ratio has.
My question, is how can I set these values (SAR and/or DAR) ?
-
From YUV to Y4M ffmpeg adapting
14 janvier 2014, par roberutsuI was used this command to convet some YUV videos in m4v, note that I was using a video in CIF format :
ffmpeg -s cif -r 30 -i video.yuv -vcodec mpeg4 -g 30 -bf 2 -sameq video.m4v
Now I downloaded a 720p movie and want to have the same paramethers
ffmpeg -r 30 -i video.y4m -vcodec libx264 -g 12 -bf 2 -sameq video.m4v
I erased "-s cif" because I read that the headers in y4m already have the resolution.
I'm getting the error "frame hate not found".