
Recherche avancée
Autres articles (66)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Configuration spécifique pour PHP5
4 février 2011, parPHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
Modules spécifiques
Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)
Sur d’autres sites (11558)
-
Applying gamma via ffmpeg does not match result in nuke/fusion/resolve
17 mai 2022, par KiwiI'm trying to convert a exr stack in linear colorspace to an H.264 .mov file in rec709 colorspace using ffmpeg. I am expecting it to match the result I get from Nuke, Fusion or Resolve.


In an editor, I can apply 2.4 gamma and export an H.264 .mov file. But when I try applying 2.4 gamma via ffmpeg, it does not match. It seems less saturated from ffmpeg.


Here is the command I'm using :


ffmpeg -y -gamma 2.4 -i C:/input/file_%04d.exr -vcodec libx264 -pix_fmt yuv420p -preset slow -crf 17 -r 25 C:/output.mov



-
No such file of directory Windows 10 PowerShell
7 avril 2020, par Constadinos ChatzisTill now the command i use to convert HDR videos to SDR worked just fine till now. I am gettong always the error message "
F:\_4k_Movies_\Dolittle: no such file or directory
" any idea what's whong ?


.\ffmpeg.exe -i F:\_4k_Movies_\Dolittle 4K.mkv -vf zscale=t=linear:npl=100,format=gbrpf32le,
zscale=p=bt709,tonemap=tonemap=hable:desat=0,zscale=t=bt709:m=bt709:r=tv,
format=yuv420p -c:v libx265 -crf 10 -preset fast F:\_4k_Movies_\Dolittle.SDR.mkv



-
How to put QUdp packets into AVPacket/FFmpeg
11 juin 2014, par user2772673I want to write a application that had to receive udp packets by
QT UdpSocket
, packets consists metadata and video.Video data is the same as from
ffmpeg udp
stream.I divided this packets and selected video data, now I want to put this video data into
AVpacket
, decode it and display in window.So I have
Qbytearray
from udp socket and don’t know how to convert it toAVpacket
.
(when I write thisQbytearray
to file I have proper video file so data is good)procFrame is called every time I get a UDP packet. In constructor I have codec initialization and other init stuff.
Cdatagrams contains one frame of video ( key frame or differential frame). Codec is mpeg2void myThread::procFrame()
{
findex++;
if(av_read_frame(pFormatCtx,&packet)<0)///now pFormatCtx pointing to file on disk
qDebug()<<"avreadframe failed";
Spacket.data = new uint8_t[Cdatagrams.size()];///Spacket is empty packet that I want to fill by Qbytearray Cdatagrams
memcpy(Spacket.data,Cdatagrams.data_ptr(),Cdatagrams.size());////here is the problem
int framecount;
int frameFinished;
avcodec_decode_video2(pCodecCtx,pFrame,&frameFinished,&Spacket);
qDebug()<< "framefinished " </ Write pixel data
for(y=0; ydata[0]+y*pFramew->linesize[0], width*3);
emit frameReady(img);
}
}In this version I have frameFinished==0 so Spacket isn’t properly prepared