
Advanced search
Medias (91)
-
Corona Radiata
26 September 2011, by
Updated: September 2011
Language: English
Type: Audio
-
Lights in the Sky
26 September 2011, by
Updated: September 2011
Language: English
Type: Audio
-
Head Down
26 September 2011, by
Updated: September 2011
Language: English
Type: Audio
-
Echoplex
26 September 2011, by
Updated: September 2011
Language: English
Type: Audio
-
Discipline
26 September 2011, by
Updated: September 2011
Language: English
Type: Audio
-
Letting You
26 September 2011, by
Updated: September 2011
Language: English
Type: Audio
Other articles (31)
-
La file d’attente de SPIPmotion
28 November 2010, byUne 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 le (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 September 2013, byCertains 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 June 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
On other websites (3146)
-
use ffmpeg in android studio2.0 can not find file
29 April 2016, by 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 April 2020, by 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 September 2021, by 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-----|