
Recherche avancée
Autres articles (27)
-
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 (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (6302)
-
ffmpeg sepia effect on video
22 juin 2015, par Gufran KhurshidHow can I apply simple sepia effect of a video using FFmpeg ? I am seeking for a single line FFmpeg command which I will be using in android.Though I have learnt
colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
on official FFmpeg doc , but unable to apply it properly.Thank you. -
ffmpeg frame->pts out-of-order when decode hevc
23 octobre 2023, par ValiantHeartI try to set
pkt->pts
to 0,1,2,3,4,5,6,
but theframe->pts
received is 0,1,4,5,3,6,2 where thepict_type
was I, I, B, B, B, B, P.

int num = 0;
pkt->pts = num++;
avcodec_send_packet(dec_ctx, pkt);
avcodec_receive_frame(dec_ctx, frame); 



I tried to read h264 file, it is correct ; and I tried to use official 'decode_video.c', it's still incorrect in hevc.


Why the
frame->pts
is not 0,1,2,3,4,5,6 ?

-
How to install FFMPEG in Red Hat OS From source code ?
9 février 2015, par SatishakumarPlease somebody provide me references for installing FFMPEG with mp3 and h264 codecs enabled from source code.
I gone through official FFMPEG website, No detailed information as how to install FFMPEG with all features enabled and no information about dependencies.