
Recherche avancée
Autres articles (59)
-
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 (...) -
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (8746)
-
creating a video from images
12 septembre 2022, par ALAEDDINMy goal is to create a video from images using videoshow : a utility for node/io.js to create straightforward video slideshows based on images using FFmpeg.


The problem i have is when i add more images like 3 with a display resolution of 1024x instead of 640x as in default the program/virtual machine (aws - t3.micro) freezes..until i force a restart in the console.. , but with 2 images the video is rendered just fine..


I guess it's related to the memory.. how i can solve the issue and where i can see the logs ?


-
Revision 47795 : On récupère le degré de rotation (pour les videos d’iphone par exemple) ...
14 mai 2011, par kent1@… — LogOn récupère le degré de rotation (pour les videos d’iphone par exemple) que l’on met en base ... et on l’utilise pour tourner les encodages ...
ffmpeg2theora ne peut tourner les videos donc dans ces cas là on force l’usage de ffmpeg -
libavcodec/videotoolbox : fix decoding of h264 streams with minor SPS changes
15 novembre 2017, par Aman Guptalibavcodec/videotoolbox : fix decoding of h264 streams with minor SPS changes
Previously the codec kept an entire copy of the SPS, and restarted the VT decoder
session whenever it changed. This fixed decoding errors in [1], as
described in 9519983c. On further inspection, that sample features an SPS change
from High/4.0 to High/3.2 while moving from one scene to another.Yesterday I received [2], which contains minor SPS changes where the
profile and level do not change. These occur frequently and are not associated with
scene changes. After 9519983c, the VT decoder session is recreated unnecessarily when
these are encountered causing visual glitches.This commit simplifies the state kept in the VTContext to include just the first three
bytes of the SPS, containing the profile and level details. This is populated initially
when the VT decoder session is created, and used to detect changes and force a restart.This means minor SPS changes are fed directly into the existing decoder, whereas
profile/level changes force the decoder session to be recreated with the new parameters.After this commit, both samples [1] and [2] playback as expected.
[1] https://s3.amazonaws.com/tmm1/videotoolbox/spschange.ts
[2] https://s3.amazonaws.com/tmm1/videotoolbox/spschange2.tsSigned-off-by : Aman Gupta <aman@tmm1.net>