
Recherche avancée
Autres articles (31)
-
(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 (...) -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)
Sur d’autres sites (5115)
-
ffmpeg blend=screen makes background look green or foreground green
24 novembre 2022, par OneWorldWhen I apply a screen blend to the foreground asset (Pikachu) over the background asset (White circle on black background)
GIMP and Adobe Photoshop make the circle asset look white, and the background asset look RGB like this :-




which is how it should look.


However, if we take the input assets :-


and



and use this ffmpeg command


ffmpeg -i circle_rgb_50.png -i pikachu_rgb.png -filter_complex "[0:v][1:v]blend=screen" pikachu_screened_over_circle_rgb_just_blend.png





and if I reverse the blend so that the inputs to the blend function are the other way around, like this :-


ffmpeg -i circle_rgb_50.png -i pikachu_rgb.png -filter_complex "[1:v][0:v]blend=screen" pikachu_screened_over_circle_rgb_just_blend_other_way_around.png





Why doesn't FFMPEG do blending the same way as GIMP or Adobe Photoshop ?


Or is there another parameter I need to pass so that blends look as they should ?


-
ffmpeg issue when decode YUV4:4:4 stream
26 octobre 2022, par Enes TezcanThere is an Encoder that streaming other monitors screen to my pc with rtsp protocol. Everything is ok when streaming format YUV422p or lower, but when I configurate it as YUV444P getting error such as bellow :




ffmpeg -i rtsp://10.1.10.14:3049/S1 out.mp4




[h264 @ 0000020ad88e9500] separate color planes are not supported

Last message repeated 2 times

[h264 @ 0000020ad88e9500] Error decoding the extradata 
[h264 @ 0000020ad88e9500] separate color planes are not supported 

Last message repeated 2 times

[h264 @ 0000020ad88e9500] non-existing PPS 2 referenced 
Last message repeated 1 times
[h264 @ 0000020ad88e9500] decode_slice_header error 
[h264 @ 0000020ad88e9500] non-existing PPS 2 referenced 
[h264 @ 0000020ad88e9500] decode_slice_header error 
[h264 @ 0000020ad88e9500] no frame!
[h264 @ 0000020ad88e9500] non-existing PPS 2 referenced 
Last message repeated 1 times
[h264 @ 0000020ad88e9500] decode_slice_header error 
[h264 @ 0000020ad88e9500] non-existing PPS 2 referenced 
[h264 @ 0000020ad88e9500] decode_slice_header error 
[h264 @ 0000020ad88e9500] no frame! 



I tried

ffprobe -show_format
to see streams' details but it gives same error.

I'm waiting for your precious helps.


Best Regards




similar but was can't solved issues


-
FFmpeg is slowing down a video in output and I cannot figure out why
23 août 2020, par S MI'm making a python program that uses FFmpeg for I/O. Right now the problem I'm getting is an input video is 3s but output is 9s. Both line up if I stretch them out manually in premiere pro but I want to fix this with ffmpeg. I know my array is 223 frames and I only give FFmpeg the argument "-r 60", but when the command is run and the video is made, it repeats every frame about 3 times, making the resulting video much longer. I can't just add command to make it play video 3 times faster because its not exactly 3 (I don't know what the exact multiplier for difference is). Is there anything I can do to make it not repeat frames ?


Edit : I'm using skvideo.vwrite so I'm not really sure what's happening with FFmpeg but this is the code I have :

skvideo.io.vwrite("out.mp4", arr, outputdict = '-r' :'60')

Where arr has shape (854, 256, 256, 3)