
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (73)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
Taille des images et des logos définissables
9 février 2011, parDans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)
Sur d’autres sites (5754)
-
Timestamp information of MP4
25 juillet 2016, par Zhenjie ZhaoI want to ask for an easy way to get the timestamp information of a mp4 file. (Sorry that I am not familiar with codec.)
I am reading the Tobii Pro Glasses SDK document that explains how to synchronize frame with eye tracking data, where they use a terminorlogy called VTS. Goolge cannot find the exact meaning, so I want to ask for what VTS really stands for and how to get it from a mp4 file. Thanks very much !
-
How to use AVCodecContext::skip_frame ?
28 mai 2012, par Denis LohI am developing a Video over IP telephone client which is using ffmpeg libavcodec to decode h.264 video streams. I am facing the issue that audio and video are getting asynch during high network load (due a parallel upload or something similar) or short network interruptions.
I get the following message by ffmpeg : Increasing reorder buffer to 16.
This message comes very seldom and when it comes, I get a high delay of approx. 1 second after the appropriate audio. I googled hours and days and only found that the decoding performance is much too low to decode the frames in time. However, the CPU load is not that high and the issue occurs at any frame rate and any frame resolution. Always with the same effect.
The only thing I believe could solve the problem is to tell the decoder to speed up by dropping some framess.
Can this be done by using AVCodecContext::skip_frame ? If so, how does it work ? How do I avoid the message above or better how do I react on that ?
Thank you for your help !
-
ffmpeg compression takes a long time
31 mars 2021, par yesterdayI'm using the following ffmpeg command in a react-native project to convert and compress a mov-file to a mp4-file. The command works, but it takes +1m30sec to convert a clip of only 10 seconds. Before I did a simple copy (because afaik mov and mp4 have the same codecs), and this copy was pretty fast (almost instantaneous for a 10sec clip).


My command :


ffmpeg -i input.mov -vcodec h264 -acodec mp3 -preset ultrafast output.mp4



My previous command :


ffmpeg -i input.mov -c copy -preset ultrafast output.mp4



The preset
ultrafast
seems not to work with the first command.