
Recherche avancée
Autres articles (59)
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
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 (6096)
-
Creating periodic offsets with ffmpeg segment muxer for seamless ffmpeg-concat transitions
30 janvier 2021, par Soren WraySuppose I begin with a 1 minute video with a framerate output of 24 frames/second and then use ffmpeg's segment muxer to split it into 60 equal parts of 1 second each with the timesptamps reset :


ffmpeg -i input.mp4 -map 0 -f segment -segment_time 1 -reset_timestamps 1 -g 24 output_%03d.mp4


I then use ffmpeg-concat to string
output_000.mp4
-output_059.mp4
together into a single video with a periodic 0.5 seconddreamy
transition effect between each segment :ffmpeg-concat -t dreamy -d 500 -o dreamy.mp4 output_*.mp4


Unfortunately, the transition effects introduce a negative 0.5 second offset between the segments, resulting in a video that is 32 seconds in duration. I don't want to deform the audio and video in this manner. I want to use transition effects without changing the duration or creating any other syncing issues. How to best achieve these seamless transitions is the question.


One potential solution would be to add an offset to the segments, e.g. 0.25 seconds at the beginning and end of every segment, such that the segment muxer produces 60 segments of 1.5 second duration from a 1 minute video. In this manner, the 0.5 second transition effects should blend seamlessly into the offsets.


I don't know where to begin to achieve this potential solution. I've read the official guide, but I can't decipher the relevant filter options for this particular use case.
ffmpeg-concat
doesn't seem to provide any native options around this problem either.

-
utvideoenc : Enable support for multiple slices and use them
14 février 2014, par Jan Ekströmutvideoenc : Enable support for multiple slices and use them
The official Ut Video decoder only threads with slices, thus until
now any files encoded by the libavcodec encoder have only been
decodable with a single thread. The default slice count is now
set to subsampled_height / 120.Also sets slices to 1 for the Ut Video encoder tests to keep them
green.Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
ffmpeg hevc decoding fail [android]
8 mars 2016, par revannenI am trying to decode h.265 with x265 and ffmpeg library, so that I downloaded ffmpeg 2.8.6 tar and x265 1.9 ver from the official site.
now, the problem is when I decode h.264 with
avcodec_find_decoder(AV_CODEC_ID_H264) ;
is totally fine. :)but, when I try to decode h.265 with
avcodec_find_decoder(AV_CODEC_ID_H265) ;
it tells lots of error log.
like.I/ffmpeg(4153) : nal_unit_type : 32, nuh_layer_id : 0temporal_id : 0
I/ffmpeg(4153) : nal_unit_type : 33, nuh_layer_id : 0temporal_id : 0
I/ffmpeg(4153) : nal_unit_type : 34, nuh_layer_id : 0temporal_id : 0
I/ffmpeg(4153) : nal_unit_type : 19, nuh_layer_id : 0temporal_id : 0
I/ffmpeg(4153) : No start code is found.
I/ffmpeg(4153) : nal_unit_type : 1, nuh_layer_id : 0temporal_id : 0
I/ffmpeg(4153) : nal_unit_type : 1, nuh_layer_id : 0temporal_id : 0
I/ffmpeg(4153) : PPS id out of range : 0
I/ffmpeg(4153) : Error parsing NAL unit #0.
I/ffmpeg(4153) : nal_unit_type : 1, nuh_layer_id : 0temporal_id : 0
I/ffmpeg(4153) : nal_unit_type : 1, nuh_layer_id : 0temporal_id : 0
I/ffmpeg(4153) : PPS id out of range : 0
I/ffmpeg(4153) : Error parsing NAL unit #0.
I/ffmpeg(4153) : nal_unit_type : 1, nuh_layer_id : 0temporal_id : 0
I/ffmpeg(4153) : nal_unit_type : 1, nuh_layer_id : 0temporal_id : 0
I/ffmpeg(4153) : PPS id out of range : 0
I/ffmpeg(4153) : Error parsing NAL unit #0.
I/ffmpeg(4153) : nal_unit_type : 1, nuh_layer_id : 0temporal_id : 0
I/ffmpeg(4153) : nal_unit_type : 1, nuh_layer_id : 0temporal_id : 0
I/ffmpeg(4153) : PPS id out of range : 0
I/ffmpeg(4153) : Error parsing NAL unit #0.
E/decode(4153) : [407] [idvr] Error while decoding frame ! [%d]
E/native(4153) : FAIL......-12
-
Is it ffmpeg error ? or x265 library error ?
-
should I modify some configuration key value in build level ? or ffmpeg running time level ?
-
I would like to know why ffmpeg library keep saying like "No start code is found" && "PPS id out of range" [it is occur in only 265 decoding case, not 264.]
-