
Recherche avancée
Médias (21)
-
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
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (78)
-
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 (10990)
-
tryging to use back camera using ffmpeg [closed]
26 août 2023, par TheMrianuraIm trying to open back camera using ffmpeg c++ in android environment :


AVFormatContext* formatCtx = avformat_alloc_context();
volatile int x = avformat_open_input(&formatCtx, "android_camera", NULL, NULL);
//x is always -2



It's very hard to find any information about android_camera. Do You have any ideas what could be wrong ?


-
FFmpeg fail to convert from .wav to .sbc and then back to .wav
7 janvier 2021, par Oz ShalevI'm trying to use
ffmpeg
to convert.wav
files to.sbc
file and then back to.wav
file on windows.
I'm trying to use the following commands :

- 

ffmpeg -i <file1>.wav -acodec sbc <file1>.sbc</file1></file1>




The command succeeds and
<file1>.sbc</file1>
is created.

Now I try to convert it back to
.wav
file and no error generate and the<file2>.wav</file2>
not created.

- 

ffmpeg -i <file1>.sbc-acodec wav <file2>.wav</file2></file1>




Any help here ?


Thanks Oz


-
ffmpeg - Concat multiple video files, add audio, set length to videos combined length
25 février 2018, par Rune AspvikI have up until now done this in 2 steps.
- Concat video files to outputNoAudio.mp4
- Add audio to outputNoAudio.mp4 trimming with -shortest
Now I’m trying to do this in one step using this line
ffmpeg -f concat -safe 0 -i 'vidlist.txt' -i 'music.m4a' -c copy -movflags faststart -y 'test.mp4'
If I use -shortest I end up with an output the length of the shortest video in vidlist.txt. What I’m trying to achieve is the length of all videos combined.