
Recherche avancée
Médias (2)
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
Autres articles (100)
-
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 -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 (7137)
-
AVI INFO crashes the Octave GUI every time I try to run the code
18 mai 2017, par SulphurI am trying to run a code in octave which requires reading frame info of a video file. However, it always crashes when I write the
aviinfo
. The line goes as this :> vInfo = aviinfo('C:\devwork\Octave\boosted\resizedVideos\11-50-48--11-50-58_resized.mp4');
I realized that I did not have FFmpeg installed on my system. I did install it but still it crashes. Any idea why ? How should I solve it ?
While looking for solutions I came across this discussion which says there is a possibility of an "unfortunate interplay between the Octave code and the ffmpeg code. But I am unable to figure out why ?
-
mp4 files / SSTS info
3 avril 2017, par ThomasI am trying to find the fastest way to get a list of all I-frames in a movie.
So far, I tried ffprobe, but it is quite slow and I have been looking for a faster solution.
The other option I found is using the mp4parser tool ; it outputs a file with this sectio, the SSTS info :
-------------------------------------------------------------------------
/moov/trak/mdia/minf/stbl/stss @ 0x1c152d8
Box size: 0x44 version: 0x0 flags: 0x0
entry_count: 0xd
sample_number:
0x1 0x12d 0x259 0x385 ....I can see that I have 13 I frames and they’re spaced 300 frames apart (from the 4 values displayed)
Is the spacing of I frames constant through movies ? or do I need to write my own SSTS parser to get the whole list ?
-
FFMPEG - error opening key info file
15 mars 2017, par Hoang NamI want muxer mp4 to m3u8 with key
I can do this when i put all file in same directory- File 480.mp4.key
- File video 480.mp4
- File hls info have name :"480.mp4.keyinfo"
When i run commnand :
ffmpeg -i 480.mp4 -hls_time 10 -hls_key_info_file 480.mp4.keyinfo output.mp4.m3u8
everything run normal.but i meet problem when i move file "480.mp4.key" and file "480.mp4.keyinfo" into other directory such as : /usr/local/WowzaStreamingEngine/keys/auto_scan/testhh/2/123/480.mp4.keyinfo
I also change key directory in file keyinfoAfter that i run
ffmpeg -i 480.mp4 -hls_time 10 -hls_key_info_file 480.mp4.keyinfo output.mp4.m3u8 ffmpeg -i output/testhh/2/123/480.mp4 -hls_time 10 -hls_key_info_file /usr/local/WowzaStreamingEngine/keys/auto_scan/testhh/2/123/480.mp4.keyinfo output/testhh/2/123/480.mp4.m3u8
Error :
error opening key info file /usr/local/WowzaStreamingEngine/keys/auto_scan//testhh/2/123/output/testhh/2/123/480.mp4.keyinfo
Could not write header for output file #0 (incorrect codec parameters ?): No such file or directory
Error initializing output stream 0:0 --Please help me solve problem. Tks !