
Recherche avancée
Médias (3)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (60)
-
Emballe Médias : Mettre en ligne simplement des documents
29 octobre 2010, parLe plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...) -
Prérequis à l’installation
31 janvier 2010, parPréambule
Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
Il (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)
Sur d’autres sites (7527)
-
Revision e717d22b63 : Use reconstructed pixels for intra prediction This commit makes the speed -6 an
8 novembre 2014, par Jingning HanUse reconstructed pixels for intra prediction
This commit makes the speed -6 and above use the reconstructed
boundary pixels for precise intra prediction. This allows more
intra prediction modes to be tested in the non-RD coding process.Enabling horizontal and vertical intra prediction modes can
improve the speed -6 compression performance for rtc set
by 0.331%.Change-Id : I3a99f9d12c6af54de2bdbf28c76eab8e0905f744
-
Ffmpeg makes audio longer when changing bitrate
17 mars 2020, par ReflexLevel0I’ve been using ffmpeg convert audio from one format to another and to change audio’s bitrate. When I try to convert aac audio to mp3 audio using the command :
ffmpeg -i SomeAudio.aac -c:a mp3 -b:a 128k SomeOutputPath.mp3
everything works correctly and output audio is of the same length as the input audio (6 minutes, 15 seconds).
However, when I try converting it to aac audio using a similar command :
ffmpeg -i SomeAudio.aac -c:a aac -b:a 128k SomeOutputPath.aac
it makes the output audio longer (around 10 minutes). I have tried specifying output length but that still makes the video longer, it just cuts of part of the audio :
ffmpeg -i SomeAudio.aac -c:a aac -b:a 128k -t 00:06:15 SomeOutputPath.aac
Here is a link to the screenshot :
My suspicion is that message "Estimating duration from bitrate, this may be innacurate" (the one in the screenshot) is the root of my problem but I just haven’t been able to find any useful information about it on the web.
Thanks a lot for any help in advance :)
-
How to correctly link static ffmpeg build using g++ ?
22 juillet 2014, par user2212461I want to link a static build of ffmpeg when compiling a project to a static executable. I use the following command :
g++ -O2 -static -o myBin myBin-myBin.o -lm -lpthread someotherlibraries.a
/path/to/libavformat.a /path/to/libavcodec.abut get a relatively large list of errors looking like :
....
libavcodec/cscd.c:91: error: undefined reference to 'uncompress'
libavcodec/flashsv.c:191: error: undefined reference to 'inflateReset'
...
libavcodec/vaapi.c:131: error: undefined reference to 'vaMapBuffer'
libavcodec/vaapi.c:38: error: undefined reference to 'vaDestroyBuffer'
libavcodec/vaapi.c:38: error: undefined reference to 'vaDestroyBuffer'
libavcodec/vaapi.c:38: error: undefined reference to 'vaDestroyBuffer'What am I doing wrong here ?