
Recherche avancée
Médias (91)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (31)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
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 ;
-
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 (3124)
-
use ffmpeg in android studio2.0 can not find file
29 avril 2016, par kempI successfully generated android folder with arm/lib and arm/include files
like this :
enter image description hereAnd then I created one Android.mk file in /Users/whyus/Library/Android/sdk/ndk-bundle/sources/ffmpeg/android/arm one Android.mk in my android project (/Users/whyus/Downloads/FFmpeg/app/build/intermediates/ndk/debug/)
and my gradle is like this :
enter image description herebut when I build the c file,it can not find the include head
-
How to concatenate mp4 file and an avi file in python ?
9 avril 2020, par programmer proI am trying to concat a mp4 audio file and an avi audio file in python. I am currently using pydub to do this. I am running this code :-



My file name is combine.py and my python version is 3.7.6



from pydub import AudioSegment

part1 = AudioSegment.from_file('part1.mp4', format='mp4')
part2 = AudioSegment.from_file('part2.avi', format='avi')

combine = part1 + part2

combine.export('combine.mp4', format='mp4')






But, i am getting this error :-



Traceback (most recent call last):
 File ".\combine.py", line 4, in <module>
 part2 = AudioSegment.from_file('part2.avi', format='avi')
 File "C:\Users\User\AppData\Local\Programs\Python\Python37\lib\site-packages\pydub\audio_segment.py", line 665, in fro
m_file
 info = mediainfo_json(orig_file)
 File "C:\Users\User\AppData\Local\Programs\Python\Python37\lib\site-packages\pydub\utils.py", line 288, in mediainfo_j
son
 for token in extra_info[stream['index']]:
KeyError: 1
</module>



I am not understanding why i am getting this error. 
Please help me.


-
How to randomly select a file with batch-file ?
15 septembre 2021, par MenaI'm new with ffmpeg, and I tried to find the Answers but didn't help.


I have 4 Audio file name : audio1.mp3 , audio2.mp3 , audio3.mp3 , audio4.mp3
and i want to merg those mp3 to those mp4 one by one with loop.
Here my code bath file that's i tried.


for %%a in ("*.mp4") do ffmpeg -i "%%a" -i ("*.mp3") -map 0:v -map 1:a -c:v copy -shortest "C:\Users\Admin\Desktop\MyOutputVideo\%%~na.mp4" pause



Here what I expect to be like this :


|-----------VIDEO1-----------|
|-----------AUDIO1.mp3-----|
|-----------VIDEO2-----------|
|-----------AUDIO2.mp3-----|
|-----------VIDEO3-----------|
|-----------AUDIO3.mp3-----|
|-----------VIDEO4-----------|
|-----------AUDIO4.mp3-----|
|-----------VIDEO5-----------|
|-----------AUDIO1.mp3-----|
|-----------VIDEO6-----------|
|-----------AUDIO2.mp3-----|