
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (98)
-
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 (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (9060)
-
Building ffmpeg-kit for android
5 juin, par kish0nI want to create an AAR dependency for my Android project, where I only convert video to audio files and use ffprobe to extract media information. https://github.com/arthenica/ffmpeg-kit


I am using the below command for generating the AAR file :


./android.sh -d --enable-android-media-codec --enable-android-zlib --enable-lame --enable-shine --enable-opus --enable-libvorbis --disable-arm-v7a-neon --disable-x86 --disable-x86-64 --disable-arm-v7a


When I import the AAR file to my project I get this error in the runtime :


java.lang.ClassNotFoundException: Didn't find class "com.arthenica.smartexception.java.Exceptions" on path: DexPathList[[zip file "/data/app/~~jEhW86BHvWX75oI4OlJ1Ew==/com.pkappstudio.mediatools-jxJu72Vroc6h16UeNwn0Mw==/base.apk"],nativeLibraryDirectories=[/data/app/~~jEhW86BHvWX75oI4OlJ1Ew==/com.pkappstudio.mediatools-jxJu72Vroc6h16UeNwn0Mw==/lib/arm64, /data/app/~~jEhW86BHvWX75oI4OlJ1Ew==/com.pkappstudio.mediatools-jxJu72Vroc6h16UeNwn0Mw==/base.apk!/lib/arm64-v8a, /system/lib64, /system/system_ext/lib64]]


Now, could anyone please help me to solve the issue, and tell me the correct way to genrate AAR file for only video to auto conversion and ffprobe. My ultimate goal is to minimize the app size.


-
Problem while building libffmpeg.so from ffmpeg sources (undefined symbol : avcodec_version)
10 octobre 2023, par serggt1I'm trying to build libffmpeg.so shared library from sources on Linux. Sources are here FFmpeg.git.


I run


./configure
make -j4

gcc -shared \
 libavcodec/libavcodec.a \
 libavdevice/libavdevice.a \
 libavfilter/libavfilter.a \
 libavformat/libavformat.a \
 libavutil/libavutil.a \
 libswresample/libswresample.a \
 libswscale/libswscale.a \
 -o libffmpeg.so



The problem is the resulting libffmpeg.so is only 15 KB and says


dlsym fail : /opt/yandex/browser/libffmpeg.so: undefined symbol: avcodec_version



What do I wrong and how to link the library in correct way ?


UPD :


Now trying with this :


./configure --enable-pic --disable-programs --enable-gpl --enable-version3 --enable-nonfree

make -j4

ld \
 -rpath-link=/usr/lib \
 -L/usr/lib \
 -L/lib \
 --library=c --library=m --library=z --library=dl --library=log \
 -soname libffmpeg.so -shared -nostdlib -Bsymbolic --whole-archive --no-undefined \
 libavcodec/libavcodec.a \
 libavdevice/libavdevice.a \
 libavfilter/libavfilter.a \
 libavformat/libavformat.a \
 libavutil/libavutil.a \
 libswresample/libswresample.a \
 libswscale/libswscale.a \
 -o libffmpeg.so



Error is
ld: cannot find -lc: No such file or directory


-
Building FFMPEG with only MP3/WAV support for PyDub
27 octobre 2023, par Andrew WorleyI've tried for three days to build a <5MB FFMPEG binary to support my standalone PyDub program, which takes .mp3 or .wav files, "blends them up", and then outputs an MP3. The program uses AudioSegment from PyDub, which requires libmp3lame to be built into FFMPEG. This is my .configure. When AudioSegment.from_mp3 is called, I get the error




lib\json\decoder.py, line 355, in raw_decode raise
JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError : Expecting value : line 1 column 1 (char
0)




and when AudioSegment.export is called when using .wav I get




pydub\audio_segment.py, line 970, in export
raise CouldntEncodeError( pydub.exceptions.CouldntEncodeError : Encoding failed. ffmpeg/avlib returned error code : 3221225781




I'm new to compiling FFMEG, and programming, so I'm sorry if I'm missing something obvious.


./configure 
--disable-everything 
--prefix=/mingw64 
--host-cflags="-m64 -I/mingw64/include" 
--host-ldflags="-m64 -L/mingw64/lib" 
--disable-network --disable-autodetect 
--enable-small 
--enable-decoder=mp3*,pcm* 
--enable-libmp3lame 
--enable-encoder=libmp3lame,pcm* 
--enable-parser=mpegaudio,dca 
--enable-demuxer=mp3,wav 
--enable-muxer=segment,mp3,wav 
--enable-filter=aresample 
--enable-protocol=file 
--disable-doc



I'm trying to build for for Windows 64bit, using MSYS2 MINGW64 Shell, if that helps anything. I've tried multiple different ./configs. None of them seem to fix the problem. Although, using a prebuilt FFMPEG works fine, but it's larger than I want to include in the .exe.