
Recherche avancée
Autres articles (35)
-
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 ) (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (5752)
-
ffmpeg lavfi distorted audio
11 mars 2017, par JohnHow to play audio at a normal rate ?
First 2s play fine, then audio becomes distorted, it seems to speed up.
ffmpeg -f image2 -loop 1 -framerate 25 -i example.jpg -lavfi "amovie=sample.aac:loop=0" -f flv rtmp://192.168.99.100:1935/live/mystream2
Repeating audio with loop:0 returns `[flv @ 0000000000708220] Non-monotonous DTS in output stream 0:0 ;
audio : http://cdn.online-convert.com/example-file/audio/example.aac
Thank you.
-
I can not make the transmission
5 octobre 2017, par Leandro Nahuel GuzmanI’m having a problem set up an icecast server on a server with debian 8 jessie I can stream audio without any inconvenience now what I want to do is stream audio and video so, I looked I could do with theora + vorbis everything ok now I can transmit video and audio but separately, when I want to do it together throws me this error
the server has a GNU/Linux debian 8 jessie and I need it to be transmitted from a computer with windows 7 +
Issuing / transcoding error : Your Libav / FFmpeg (libavcodec)
installation does not have the following encoder : Vorbis Audio. If you
do not know how to solve this, ask for support for your distribution.I use the VLC for that purpose
I was researching but I can not find anything to solve it, I appreciate the help and if you need any more information ask me and I will pass
I am not an expert in GNU/Linux but I do what I can and I am learning little by little
thank you very much
-
FFMPEG says “No such file or directory” when trying to convert image sequence ($02d)
16 juillet 2020, par Paulo A. CostaI am trying to create a slide movie from images using ffmpeg. I´m trying to use my images 00..99.jpg


My images should be identified by FFMPEG from %02d.jpg. Issuing ls img[0-9][0-9].jpg succeeds in the very same directory I issue the FFMPEG command.


The command I use is :


ffmpeg -y -framerate 1/5 -i images\%02d.jpg -r 30 -vf "pad=ceil(iw/2)*2:ceil(ih/2)*2" -minrate 859k -maxrate 859k -b:v 859k -bufsize 859k \images\output.mp4



They founded the file 01, 02, 03, 04, 05. But the file 30 they couldn't find.


%02d isn't a representation of 00 to 99 ? Why this isnt working ?


How I can get 00 to 99 ; or if not possible, how I can get all jpgs from my images directory (*.jpg) ?


Thank You.