
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#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
Autres articles (103)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)
Sur d’autres sites (6894)
-
running the first Qt + ffmpeg profram : undefined reference av_register_all [duplicate]
20 avril 2016, par JuliaThis question already has an answer here :
I am trying to include ffmpeg in my qt project on windows (I use QT Creator).
I wrote a small program.#include <iostream>
#ifdef __cplusplus
extern "C" {
#endif
#include <libavcodec></libavcodec>avcodec.h>
#include <libavformat></libavformat>avformat.h>
#include <libswscale></libswscale>swscale.h>
#ifdef __cplusplus
}
#endif
using namespace std;
int main(int argc, char *argv[])
{
av_register_all();
return 0;
}
</iostream>And here is the problem
undefined reference av_register_all
Please help me to fix it.
-
FFMPEG combining MP4 videos with same encoding not working, only showing first video
13 avril 2020, par AyudhMy mp4 videos have the same encoding : h264



I know because I ran this command on them :



ffprobe -v error -select_streams v:0 -show_entries stream=codec_name -of default=noprint_wrappers=1:nokey=1 a.mp4



Now I combine them using the following command :



ffmpeg -loglevel quiet -f concat -safe 0 -i video-list.txt -c copy video-final.mp4



my video-list.txt file looks like this :



file 'a.mp4'
file 'b.mp4'
file 'c.mp4'




Now the video-final.mp4 which is the combined video actually has duration which is equal to the sum of its' component videos and also is quite larger in size. The issue is that when I play the video, it only plays the first video then stops.



What's going on here ? Any insight would be appreciated.



I've looked at : ffmpeg : Combine/merge multiple mp4 videos not working, output only contains the first video and the answers suggested there are the ones I'm using : specifically, concating from a text file containing the component videos.


-
ffmpeg not finding my images when trying to create a video from images
18 juin 2020, par AntsushiI have found similar questions on Stackoverflow but none of the answers seem to be working for me. I have images that are named like that :



MP_002_0000.tif
MP_002_0001.tif
MP_002_0002.tif
...
MP_002_0650.tif




I try to create a video by typing the following code into cmd and powershell :



ffmpeg -framerate 24 -i MP_002_%650d.tif output.mp4




But it returns an error that says



Could find no file with path 'MP_002_%650d.tif' and index in the range 0-4
MP_002_%650d.tif: No such file or directory




I then tried the following and I am getting the same error (some of them are probably very silly) :



ffmpeg -framerate 24 -i MP_002_%50d.tif output.mp4
ffmpeg -framerate 24 -i MP_002_%%50d.tif output.mp4
ffmpeg -start_number 0000 -framerate 24 -i MP_002_%%0650d.tif output.mp4
ffmpeg -start_number 0001 -framerate 24 -i MP_002_%%0650d.tif output.mp4




All the images are named in a sequential order and if I try to create a video from only the first 20 images I get the same error. I really am at loss here.