
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (55)
-
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 (7405)
-
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.
-
Why is only one of multiple overlayed videos playing in FFmpeg ? [closed]
27 mai 2023, par Sixtus AnyanwuOnly one out of multiple overlayed videos is playing FFmpeg


I am trying to overlay 2 playable videos on top of another video in ffmpeg.


ffmpeg -hide_banner -i finalagain.mp4 -i Tatsumaki0trim.mp4 -i Tatsumaki1trim.mp4 -filter_complex "[0][1]overlay=x=(W-w)/2:y=(H-h)/2:enable='between(t,4,8)'[v1]; [v1][2]overlay=x=(W-w)/2:y=(H-h)/2:enable='between(t,0,4)'[v2]" -map "[v2]" -map 0:a -preset ultrafast trial.mp4


But the 1st video gets played while the second remain static.
Here is the video on YouTube.
https://m.youtube.com/watch?v=XStgNnjTaLE&feature=youtu.be


-
What are the encoding techniques to be used while creating 3gp videos on iPhone
23 avril 2013, par MaheshSome converted 3gp video using ffmpeg library, played on iphone and some not played and that all video played on android,blackberry and J2ME without issues.
- please suggest to what type of encoding to be used while creating 3gp videos which is play in iphone without issues.