
Recherche avancée
Médias (29)
-
#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
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (112)
-
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 (9146)
-
How can I convert an FFmpeg command line to python code
1er janvier 2023, par Ali HerzI'm trying to combine an image with an audio file and convert them to mp4.
I found this command line and I used it. It works perfectly.


ffmpeg -loop 1 -i 01_Prologue.png -i 01_Prologue.wav -c:v libx264 -tune stillimage -c:a aac -b:a 192k -pix_fmt yuv420p -shortest out.mp4


I want to use python because I want to combine multiple images with multiple audio files


I used this code to combine the same audio and image files but it gave me a blank video file.


import ffmpeg

input_still = ffmpeg.input("image.jpg")
input_audio = ffmpeg.input("audio.wav")

(
ffmpeg
.concat(input_still, input_audio, v=1, a=1)
.output("output.mp4")
.run(overwrite_output=True)
)



I'm guessing that is because I didn't add the filters to the code, and the problem happened.


but how to do it ?


-
Git log for the next change on a specific file line in a remote branch
20 juin 2022, par F. PetrulioI'm exploring the git history of the project FFMpeg. I got the changes performed on each file between the commits
517573a67088b5c7a25c18373434e3448892ee93
and80bb65fafab1d2f5f58a8453c6334c784ee27c08
by creating a patch with the command :

git diff 80bb65fafab1d2f5f58a8453c6334c784ee27c08..c5079bf3bccd24bf8ed45ff47ff4071fd09e9fd8 -p > my.patch



Now, for instance, I know that the file
doc/examples/encode_video.c
has been modified at row149
and I would get the only the next commit afterc5079bf3bccd24bf8ed45ff47ff4071fd09e9fd8
that modifies this line. Considering that some commits are on remotes, I'm using the command :

git log -L149,149: doc/examples/encode_video.c -1 c5079bf3bccd24bf8ed45ff47ff4071fd09e9fd8..HEAD --remotes



but git returns the message :


fatal: More than one commit to dig from: origin/HEAD and HEAD?



I think the problem is that I'm trying to log a commit on a remote, not on the master branch, but it's just a speculation. How can I solve it ?


-
doc/libav-merge : remove line about AC3 fixed decoder speedup
31 mars 2017, par James Almer