
Recherche avancée
Autres articles (40)
-
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 (...) -
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (4223)
-
Time restraints with Ffmpeg [on hold]
18 mars 2017, par AntonioMarquisI am using Ffmpeg to record video in a rails app. I want to give the user a minimum and maximum time limit. What is the best flag to use to set this restraint ?
-
How can I synchronize audio and video in real-time transcoding using ffmpeg API ?
25 mai 2023, par qwerI was using ffmpeg api for realtime tanscoding, but somethimes when the system resources (memory) become limited , audio and video is out of syn, as i was tanscoding and pushing rtmp stream so it involves both decoding and and encoding , do i need some sync method to solve the problem, on whatside should i do the synchronizton, during the demux decode time or the encode push stream time,thanks in advance.


i was experencing the problem,and i don't konw how to solve the problem , i was trying to sync the pts in the demux period , read the avpacket and sync the time based on current system time,but no luck.


-
Calculate current video time with FFMPEG
11 avril 2014, par KaiCurrently we tried using
AVCodecContext->frame_number/fps
to get the current time of the video, but this variable seem to only go up, so after a backward seek the calculated time is all messed up.Can AVCodecContext->frame_number be used for this purpose ? If so, how should it be used ; if not, what then is the correct method ?