
Recherche avancée
Médias (2)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (100)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 ) (...)
Sur d’autres sites (10339)
-
Videos processed with ffmpeg are not 1080p as specified by flags
2 septembre 2012, par ensnareI'm converting videos in Python using ffmpeg + libx264.
I've noticed that when I use the below code, the output width and height are not consistent. All input files are 1080p, but the output files are sometimes 1080p, and other times twice the size or somewhere inbetween.
This is the 2-pass code I am using to generate my videos.
#Generate 1080p Movie
if not os.path.exists(destination_filename_1080):
pass_num = 1
while pass_num <= 2:
p = subprocess.Popen(['ffmpeg','-i', str(filename),
'-acodec' , 'aac' ,
'-ab' , '192k' ,
'-ac' , '2' ,
'-vcodec' , 'libx264' ,
'-strict' , '-2' ,
'-vpre' , 'ipod640' ,
'-threads' , '8' ,
'-s' , '1920x1080' ,
'-b:v' , '10M' ,
'-pass' , str(pass_num) ,
'-passlogfile' , random_1080 ,
'-y' ,
destination_filename_1080_temp])
p.wait()
pass_num = pass_num + 1It's my understanding that the "-s 1920x1080" flag should force the output to be 1080p, no ? I'm not sure how the output size can be greater than 1080p when the input is only 1080p.
Thanks in advance.
-
Use x264 convert 1080p to 720p on linux,How to set the x264 parameters ? [closed]
8 mars 2014, par Lyricall,
I want to use x264 convert 1080p to 720p on Linux,How to set the x264 parameters ?please help me.
-
how to set x264 encoder output 720P when the input is 1080P on linux
8 mars 2014, par LyricI use libx264 on ubuntu, programming use C.
I want to set x264 encoder output
720P
. The input image size is1080P
. How to set the params ?I don’t know whether set the two parameters :
param->vui.i_sar_width = ?;
param->vui.i_sar_height= ?;or another parameter
crop-rect
?