
Recherche avancée
Autres articles (72)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
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 (...)
Sur d’autres sites (8081)
-
ffmpeg fix video orientation
17 mars 2014, par PiTheNumberA video can contain a meta info about the camera orientation. For example iPhone and other phones set this flag if you turn the device. Problem is while some player read this info and rotate the video accordingly, other players do not.
To fix this the video has to be rotated and the meta info needs to be set correctly.
Does ffmpeg provide a fix for this or do I have to go the hard way (Read rotation, rotate, set meta data)
-
Read raw YUV with ffplay : how to set the colorspace ?
20 juin 2016, par Ulysse DarmetI’m using ffplay on my Ubuntu 16.04 to read raw YUV videos as follows :
ffplay -f rawvideo -video_size 1920x1080 -colorspace bt2020_cl -color_primaries bt2020 -pixel_format yuv420p10 -i FireEater2Clip4000r1_1920x1080p_25_hf_2020_ct2020_420.yuv
But the video it gives me looks like that
Instead of being more orange-colored like that
Does anyone have an idea of what I’m doing wrong ? I’m new to video compression so any help would be appreciated :)
EDIT :
I solved the problem ! This wasn’t related to a misuse of ffplay but to my building of the .yuv from the .exr (I forgot to specify the transfer function.) -
FFMpeg codec compatible with rgb24 ?
21 octobre 2013, par Chad MourningI'm trying to turn some RGB data from my OpenGL screen buffer into a video using ffmpeg.
I have successful output videos of "hand made" data using some of the YUV formats, but I'd like to use an RGB24 pixel format so I can have a 1:1 correspondence between my screen buffer and the output images.
The codecs I've used so far don't support RGB24, except for CODEC_ID_RAWVIDEO. But when I used RAWVIDEO, the video it created wouldn't play in any of my players (it had a sane size, but appeared empty).
Any advice on a usable RGB24 compatible codec ?