
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (53)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
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 ) (...)
Sur d’autres sites (6823)
-
how do I save the videos in an specific bitrate using ffmpeg ?
15 mai 2022, par davidI am trying to save some videos in specific bitrate (8000k) and for this, I used the following code :


ffmpeg -i input_1080p60 -c:v libx264 -pix_fmt yuv420p -b:v 8000K -bufsize 8000K -minrate 8000K -maxrate 8000K -x264opts keyint=120:min-keyint=120 -preset veryfast -profile:v high out_1080p.264



but after saving the videos, I find out each video has a different bitrate except 8000k ( for example 5000k, 6000k, 7500k,...). but I define the minrate 8000k. do you know what is the problem and how can I force the above code to have the specific bitrate ? Thank you.


-
Is it possible to read a Video from POST request into python-ffmpeg or OpenCV ?
16 janvier 2021, par PhyDevI've been thinking of a way to read the uploaded Video from POST request with ffmpeg-python or OpenCV so I can process it before saving, so is it possible ?
And if not, then is it safe to save the video into disk and then do all the processing required ? the main point that is bothering me is that I would want to read Video length so I can verify it's valid, so is it also a good idea to save it into disk, check length, and then keep it if its length is in the permitted range, and otherwise I delete it.


Thanks in advance.


Note : I've noticed that the tags don't contain ffmpeg-python, so answers regarding pyffmpeg are also accepted.


-
Errors in FFMPEG and AVCONV (error count , error y=31 x=16 , overread 8 )
14 mai 2014, par Kotik_oI have a Dlink camera DCS-932L.
I want to get video -> image.
To do that I execute :
avconv -i http://user:pass@[IP]/video.cgi?user=user&password=pass&channel=0&.mjpg "%d.jpeg"
A few times I get errors like :
[mjpeg @ 0x18a1240] error y=31 x=16
or
error count : 64
or
overread 8
there is a way to discard this errors ? If I have a bad image doesn’t matter. I want that avconv or ffmpeg continues with saving images...
Thanks for your time.