
Recherche avancée
Médias (1)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (85)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
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 (...)
Sur d’autres sites (5882)
-
What does 'Past duration X.XXX too large' mean ?
12 janvier 2017, par ErikWhen encoding H.264 using ffmpeg I get the following type of warnings en masse :
Past duration 0.603386 too large
Past duration 0.614372 too large
Past duration 0.606377 too largeWhat do they mean ? I have not found anything clear online or in the ffmpeg documentation.
-
FFMPEG converting media type aswell as relocating MOOV atom [migrated]
11 juin 2013, par Samuel RichardsI have found this line online
ffmpeg -i input.mp4 -c:a copy -c:v copy -movflags faststart output.mp4
Which takes an input, and copies the audio, video and sets the MOOV atom to the beginning in an element called output.mp4. Basically creating the same video with the MOOV atoms in a new place.
I need to convert the type of this media though - so I have the line
ffmpeg -i input.wmv -vcodec h264 -f mp4 output.mp4
My problem is, is this possible in one line ? I know I can run one after another but that creates a couple of videos when I only need the resulting video, which could result in a lot of memory wasted.
I am sure the line
ffmpeg -i input.wmv -movflags faststart -vcodec h264 -f mp4 output.mp4
Is legitimate, but without the straight copies, this takes a long long time to compute.
Any input on MOOV atoms and ffmpeg computation is welcome.
-
QT-Faststart - Can it be used with FFMPEG ?
11 juin 2013, par Samuel RichardsQuick question - I am currently running FFMPEG and I have read that the new updates feature QT-faststart. And if I run the command
ffmpeg qt-faststart
then this throws an error, so something must be happening ?
I only want to move the MOOV atom to the beginning of the video, so assumed
ffmpeg qt-faststart 'input.avi' 'output.avi'
Would have worked, but it always throws an "Unable to find a suitable output format for 'qt-faststart'" — "qt-faststart : Invalid argument"
I can't find any information on this online, seems quite a niche market in that sense.
Any information would be much appreciated ! Thank you kindly.