
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (111)
-
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...) -
Utilisation et configuration du script
19 janvier 2011, parInformations spécifiques à la distribution Debian
Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
Récupération du script
Le script d’installation peut être récupéré de deux manières différentes.
Via svn en utilisant la commande pour récupérer le code source à jour :
svn co (...) -
Encodage et transformation en formats lisibles sur Internet
10 avril 2011MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)
Sur d’autres sites (5991)
-
FFmpeg compile error
7 octobre 2014, par CaptainCookI get an error when compiling my project ffmpeg. I followed this guide : TheGuide.
When I execute the command
make
I get this error message :AS libavcodec/arm/mlpdsp_armv5te.o
libavcodec/arm/mlpdsp_armv5te.S:88:9: error: unknown directive
.hword (60f - 0b) / 2, (61f - 0b) / 2, (62f - 0b) / 2, (63f - 0b) / 2, (64f - 0b) / 2
...
make: *** [libavcodec/arm/mlpdsp_armv5te.o] Error 1I do develop on a
MAC
withOS X mavericks
. -
avformat/mpegenc : Fix ever growing FIFO and infinite loop on error
1er avril 2022, par Andreas Rheinhardtavformat/mpegenc : Fix ever growing FIFO and infinite loop on error
Since the switch to the new FIFO API in commit
ea511196a6c85eb433e10cdbecb0b2c722faf20d, the FIFO is always
grown by the amount of data intended to be written into it
even in case the FIFO has enough free space. Fix this by
only growing the FIFO if needed and then only by the amount that is
actually needed.The allocation errors that resulted from this uncovered another bug :
The context is left in an inconsistent state in case the FIFO can't
be grown, because the FIFO does not contain as much data as the sizes
contained in the PacketDesc list claim. This led to an infinite loop
in output_packet() (called from mpeg_mux_end()).Fix this by growing the FIFO before adding a new PacketDesc element,
thereby preventing the context from becoming inconsistent.Reported-by : Nicolas Gaullier <nicolas.gaullier@cji.paris>
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com> -
how to ignore or fix false 'unmet dependencies' error ?
31 août 2014, par yy502OS: LMDE 201403
I previously installed
OpenShot
(a video editing software), which depends onlibmlt6
, andlibmlt6
depends onffmpeg
. The chain of dependencies auto-installed just fine.Today I compiled and installed the latest
ffmpeg
v2.3.3 andapt-get
starts to complain :You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
libmlt6 : Depends: ffmpeg (>= 5:0.6.2~) but 2.3.3-1 is to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).Well, I’m sure my compiled version of
ffmpeg
is newer than whatever versionlibmlt6
requires, but the package manager does not seem to understand the new version number. How can I ignore or fix false ’unmet dependencies’ error, please ?Thanks for your time !
Edit :
Executing
apt-get -f install
would install theffmpeg
from repository to/usr/bin/
and uninstall/overwrite my compiled version offfmpeg
in/usr/local/bin/
... not really the solution I’m after...Edit2 :
the auto fix of
apt-get
will remove my compiled version offfmpeg
as prompted below :sudo apt-get install -f
Reading package lists... Done
Building dependency tree
Reading state information... Done
Correcting dependencies... Done
The following extra packages will be installed:
ffmpeg
Suggested packages:
nvidia-libvdpau1
The following packages will be upgraded:
ffmpeg
1 upgraded, 0 newly installed, 0 to remove and 2 not upgraded.
Need to get 0 B/1,307 kB of archives.
After this operation, 242 MB disk space will be freed.
Do you want to continue? [Y/n] n
Abort.