
Recherche avancée
Autres articles (61)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)
Sur d’autres sites (10914)
-
libFLAC/stream_decoder : Fix double free
22 août 2015, par Erik de Castro LopolibFLAC/stream_decoder : Fix double free
The american-fuzzy-lop fuzzer found a couple of instances of double
free() resulting from commit 15a9062609.The problematic free() were the ones associated with use of the
safe_realloc_mul_2op_() function which can call realloc(ptr,0) which
according to the realloc manpage is already an implicit free(). -
using ffmpeg.jar with android (in android studio)
7 mai 2016, par Dany YI’m trying to use
FFmpegFrameRecorder
in android. I tried all the possible configurations and still havingjava.lang.UnsatisfiedLinkError: org.bytedeco.javacpp.avutil
on runtime.I already added the files :
- ffmpeg.jar
- ffmpeg-android-arm.jar
- javacpp.jar
- javacv.jar
- opencv-android-arm.jar
- opencv.jarI tried from the javacv-presets and javacvbin
I tried to extract opencv.jar and ffmpeg.jar and copy the .so files in the jnlibs and in jnlibs/armvebi
Any idea what should be done ?
-
How to scale the YUV image from MediaCodec output with any color format ?
17 octobre 2014, par Frank BushI’m using MediaCodec to decode the video and using sws_scale(from ffmpeg) to rescale it.I can deal with one special color format,eg. YUV420P, and rescale it to destination size. But I have to do some preparing work, such as getting the linesize and memcpy the output buffer to three plain slices(data[0],data[1],data[2]).And the decoder output color format varies on different devices.If I get the colorformat,is there a method in ffmpeg to rescale it automatically without special dealing(Of course, the color format should be supported by ffmpeg) ?