
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (73)
-
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) (...)
-
Diogene : création de masques spécifiques de formulaires d’édition de contenus
26 octobre 2010, parDiogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
A quoi sert ce plugin
Création de masques de formulaires
Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...) -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...)
Sur d’autres sites (7880)
-
FFmpeg streaming low CRF results in low quality
12 août 2019, par Max PaythonI am streaming(live chat) with FFmpeg using the following parameters.
ffmpeg -f dshow -rtbufsize 100M -i video="device":audio="device" \
-c:v libx264 -crf 30 -preset ultrafast -tune zerolatency \
-c:a aac -f mpegts udp://127.0.0.1:1234Unexpectedly, when CRF is lowered from 30 to 20, step-by-step. The stream quality decreases dramatically. When the CRF is about 20, sudden changes in the picture (like a head movement), seems to make the image green, gray or very distorted. I tried using CRF 30, and the problems seems to be gone. Why is this happening ?
I don’t think it is a bandwidth issue given that I am on localhost. Also I didn’t change anything based on I-frames.
Edit : I checked the file sizes given CRF 20 and CRF 30 on libx265.
10 Second video.
CRF 20 : 1.7M
CRF 30 : 350kb
Is 1.7M really bad for a 10 second stream that localhost or any other live streaming sevice can’t handle ?
-
Linux & C : How to set file reading priority in multi-process program while recording mp4 files
31 octobre 2017, par bala ece17This is for an assignment I’m not looking for you to suggest me the answer. I just need someone to point me in the right direction, maybe with a line or two of sample code.
I need to figure out how to set the priority of a recording mp4 files within my program. To the point :
i am trying to record from three cameras (1-HD and 2 analog cameras) at the same time and creating its tar file after each recording of duration 60seconds.
so after a set of records completed, i am taring those files. in doing that i am experiencing frame skip in only HD camera, remain 2 analog cameras are fine.hence forth i decided to set high priority for recording and low priority for taring those files.
please suggest me some ideas to set the priority, that neglect the frame skip.
Any help/guidance is appreciated :)
-
OBS/ffmpeg HLS URL Output
29 mars 2017, par Jeremy LabadieThis is probably more of an OBS question and not exactly a ffmpeg question, but I am hoping someone with enough knowledge of what is going on can chime in or point me to the right direction.
I am using OBS advanced output (ffmpeg) to output HLS to a URL. The URL target that I am using looks like this (replacing http to stay within the 2 link limit) :
hxxp ://hostname:port/hostname/streamid/testAnd I expect the output to look something like this :
hxxp ://hostname:port/hostname/streamid/test/index.m3u8The problem is what is being generated is :
hxxp ://hostname:port/hostnameindex.m3u8Does anyone have an idea why this would be happening ?
For context, I am trying to publish HLS directly to another entry point on my network. I picked OBS because 1) it’s free, 2) it uses ffmpeg, 3) it can stream RTMP and HLS, 4) it can write HLS to disk. I don’t mind using ffmpeg natively (without OBS), but I will be the first to admit that I am a novice when it comes to ffmpeg.
Thanks in advance for any help !