
Recherche avancée
Autres articles (31)
-
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
L’utiliser, en parler, le critiquer
10 avril 2011La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
Une liste de discussion est disponible pour tout échange entre utilisateurs.
Sur d’autres sites (5624)
-
Making a video with opencv and ffmpeg. How to find the right color format ?
17 mai 2024, par lucI have a webcam video recorder program built with python, opencv and ffmpeg



It works ok except that the color of the video is more blue than the reality. The problem seems to come from color format of images.



It seems that OpenCv is giving BGR images and ffmpeg+libx264 is expecting YUV420p. I've read that YUV420p correspond to YCbCr.



opencv has no conversion from BGR to YCbCr. It only has a conversion to YCrCb.



I have made some searchs and tried different alternatives to try converting opencv image to something that could be ok for ffmpeg+libx264. None is working. At this point, I am a bit lost and I would appreciate any pointer that could help me to fix this color issue.


-
swscale/graph : add color mapping pass
29 novembre 2024, par Niklas Haasswscale/graph : add color mapping pass
This leverages the previously introduced color management subsystem in order
to adapt between transfer functions and color spaces, as well as for HDR tone
mapping.Take special care to handle grayscale formats without a colorspace
gracefully. -
Find the streaming url source of an online streaming tv station to record with ffmepg
20 mars 2016, par AHCI am trying to look into the javascript streaming source of the following site http://www.aztv.az/canli/aztv-canli.htm to capture the url and to record it using
ffmpeg
.My goal is to get something like this running :
ffmpeg -i rtsp://XXX.XXX.XXX.XXX:XXX/live.sdp -acodec copy -vcodec copy c:/test_recording.mp4
I don’t know what protocol this website uses, rtsp, rtmp, http, etc.
Could you please help me to resolve this ?
I tried to look into the.js
file in the source of the page, but it is a bit complicated to figure it out. here is the js script.