
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (52)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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
Sur d’autres sites (9794)
-
FFmpeg can't decode H264 stream/frame data
31 juillet 2015, par GediminasRecently I had chance to work with two devices that are streaming the H264 through RTSP.
And I’ve ran into some problem trying to decompress this stream using FFmpeg library.Every time the "avcodec_decode_video2" is called - FFmpeg just says something like :
[h264 @ 00339220] no frame !
My raw H264 stream I frame data starts like this : "65 88 84 21 3F F8 F8 0D..."
(as far as I understand this 0x65 indicates that it’s a IDR frame ?)Other frames for one device starts like : "41 9A 22 07 F3 4E 48 CC...."
and for other device - like this : "61 9A 25 C1 1C 45 62 39...."
- Am I missing some frame data here ?
- Does FFmpeg needs to have some extra parameters set up ?
I was expecting at least "00 00 00 01" bytes at the start for the frame data... but this is what I’ve got..
-
Android FFMPEG doesn't recognize file : protocol
6 mai 2013, par kevI'm running an android ffmpeg build through the Runtime.getRuntime().exec() command
Problem is that when i specify the input as a file i get this error :E/MainActivity(18168): file:/mnt/sdcard/young.flv: Protocol not found
Initially i just specified the file name without the "file :" prefix and still get the same error. How can i specify input files ?
-
FFMpeg multiple action in single command
10 juin 2020, par Hasan Yilmazi want to convert and resize a video and put a logo on it.
i am doing this with 2 different command line like this.



command line1 :
D :\Logo\ffmpeg -i "D :\Logo\video.mxf" -vf scale=1280:720 "D :\Logo\video.mxf_fullHDtoHD.mp4"



command line 2 :
D :\Logo\ffmpeg -i "D :\Logo\video.mxf_fullHDtoHD.mp4" -i D :\Logo\logo_720p.png -filter_complex "[0:v][1:v] overlay=60:50" "D :\Logo\output_720p_with_logo.mp4"



can i do this in just one line command.
thank you very much