
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (36)
-
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 -
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
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 (...)
Sur d’autres sites (4947)
-
aarch64 : Add asm for mbtree fixed point conversion
24 avril 2016, par Janne Grunauaarch64 : Add asm for mbtree fixed point conversion
pack is 7 times faster and unpack is 9 times faster on a cortex-a53
compared to gcc-5.3.mbtree_fix8_pack_c : 41534
mbtree_fix8_pack_neon : 5766
mbtree_fix8_unpack_c : 44102
mbtree_fix8_unpack_neon : 4868 -
Error while processing h.264 rtsp stream in opencv
4 février 2016, par satinderMy opencv code is perfectly open any video file and decently play it . But when I open the rtsp h.264 video stream then there have **following errors messages :
Last message repeated 1 times
[h264 @ 0x3a43420] decode_slice_header error
[h264 @ 0x3a43420] no frame!
[h264 @ 0x3a43420] non-existing PPS 0 referenced
Last message repeated 1 times
[h264 @ 0x3a43420] decode_slice_header error
[h264 @ 0x3a43420] no frame!
[h264 @ 0x3a43420] non-existing PPS 0 referenced**after 2-3 mins video is playing in opencv.
But we know opencv use ffmpeg library for decode frame . So , I have an idea and I play that network rtsp stream with ffplay . Then ffplay decently play that stream after 2-3 message approx within 5 secs . So how I can solve opencv problem . Please anybody help for that.
-
How to create a video from images on a .tif format with FFmpeg ?
18 décembre 2018, par ecjbI just discovered
FFmpeg
: awesome software. After reading this this stackoverflow question I could efficiently create a movie with pictures in a.png
format with the following line :ffmpeg -r 1/5 -i img%03d.png -c:v libx264 -vf "fps=25,format=yuv420p" out.mp4
In an experiment, however, I took high quality pictures on a
.tif
format and would like to create a movie out of them. I just copied the line above and replaced the name of the files as well as the format.png
by.tif
but I got a message error saying "This format is not supported
". Here is the report :[tiff @ 0x7fce5c02a600] This format is not supported (bpp=12, bppcount=1)
Last message repeated 1 times
Error while decoding stream #0:0: Invalid data found when processing input
[tiff @ 0x7fce5c01bc00] This format is not supported (bpp=12, bppcount=1)
Last message repeated 7 times
Cannot determine format of input stream 0:0 after EOF
Error marking filters as finished
Conversion failed!Should I just forget it or is there a workaround with
ffmpeg
?