
Recherche avancée
Autres articles (55)
-
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 (...) -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (7503)
-
cbs_h264 : Improve adding SEI messages
29 juillet 2019, par Andreas Rheinhardtcbs_h264 : Improve adding SEI messages
Up until now, if an SEI messages was to be added to a fragment, it was
tried to add said SEI message to the first SEI NAL unit of the fragment
and if this SEI NAL unit already contained H264_NAL_SEI SEI messages (an
arbitrary limit imposed by cbs_h264), adding failed ; if there was no SEI
NAL unit, a new one has been added.
With this commit, the fragment is searched for further NAL units to add
the SEI messages to. If all of them are full, a new SEI NAL unit is added.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-
How trim last frames from old mp4 video and merge new to it in one ffmpeg command ? [closed]
2 mai 2024, par mikezangI have a full time old mp4 video and a newest video, I want to trim frames from old video, then merge new to old trimed to build a new full video, can I do it in one ffmpeg command without reencode ?
Something like oldFull.mp4 - lastFrames) + new.mp4 = newFull,mp4
If old full frames are oldFrames, and want to remove last frames as removeFrames, how can I merge new.mp4 to OUT ?


ffmpeg -i IN -c copy -bsf:v noise=drop=between(n\,removeFrames\,oldFrames) OUT



-
on2avc : limit number of bits to 30 in get_egolomb
16 décembre 2015, par Andreas Cadhalpunon2avc : limit number of bits to 30 in get_egolomb
More don’t fit into the integer output.
Also use get_bits_long, since get_bits only supports reading up to 25
bits, while get_bits_long supports the full integer range.Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>