
Recherche avancée
Autres articles (101)
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)
Sur d’autres sites (10517)
-
10 Matomo Features You Possibly Didn’t Know About
28 octobre 2022, par Erin -
Android, AOSP tree, external project (ffmpeg) is built for AMD64
22 avril 2015, par kagali-sanI’m trying to build ffmpeg4android on current AOSP tree (from /external), which is lunch-configured to aosp_arm-eng and set to
PLATFORM_VERSION=4.2
.Resulting files are generated for
AMD64
(host native) architecture, even though the major rest of tree is built (as expected)ARM
:readelf -a android/aosp_arm-eng/ffplay|egrep "Class :|Machine :"
Class : ELF64 Machine :
Advanced Micro Devices X86-64versus
readelf -a
aosp/out/target/product/generic/symbols/system/lib/libril.so | egrep "Class :|Machine :"Class : ELF32
Machine : ARM
I will probably switch to other ways of getting
ffmpeg-arm
(presumably the one described here) ; the reason of asking this question is to understand, at which build stage does cross-compilation environment breaks. -
FFMpeg integration with iOS 7
2 janvier 2014, par metsburgI am trying to integrate FFMpeg with iOS 7.
My objective is to decode a video stream which is coming in through H.264 video codec.
I've built the FFMpeg library using methodology described here : Trying to compile the FFMPEG libraries for iPhoneOS platform with armv6 and arv7 architecture
When I compile using :
./configure
--prefix=armv7
--disable-ffmpeg
--disable-ffplay
--disable-ffprobe
--disable-ffserver
--enable-avresample
--enable-cross-compile
--sysroot="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk"
--target-os=darwin
--cc="/usr/llvm-gcc-4.2/bin/llvm-gcc-4.2"
--extra-cflags="-arch armv7 -mfpu=neon -miphoneos-version-min=6.1"
--extra-ldflags="-arch armv7 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.0.sdk -miphoneos-version-min=7.0"
--arch=arm --cpu=cortex-a9 --enable-picall the *.a files do not get generated.
I'm trying to create a sample FFMpeg project, as described in http://sol3.typepad.com/exotic_particles/2012/10/building-a-simple-frame-recorder-part-1.html?cid=6a00d8343a141353ef019b01f49c8e970d#comment-6a00d8343a141353ef019b01f49c8e970d
However, I keep getting the following error while trying to build the project :
Undefined symbols for architecture i386:
"_av_close_input_file", referenced from:
-[FrameExtractor dealloc] in FFmpegDecoder(FrameExtractor.o)
"_av_find_stream_info", referenced from:
-[FrameExtractor initWithVideo:] in FFmpegDecoder(FrameExtractor.o)
"_av_free", referenced from:
-[FrameExtractor dealloc] in FFmpegDecoder(FrameExtractor.o)
"_av_free_packet", referenced from:
-[FrameExtractor stepFrame] in FFmpegDecoder(FrameExtractor.o)
"_av_open_input_file", referenced from:
-[FrameExtractor initWithVideo:] in FFmpegDecoder(FrameExtractor.o)
"_av_read_frame", referenced from:
-[FrameExtractor stepFrame] in FFmpegDecoder(FrameExtractor.o)
"_av_register_all", referenced from:
-[FrameExtractor initWithVideo:] in FFmpegDecoder(FrameExtractor.o)
"_avcodec_alloc_frame", referenced from:
-[FrameExtractor initWithVideo:] in FFmpegDecoder(FrameExtractor.o)
"_avcodec_close", referenced from:
-[FrameExtractor dealloc] in FFmpegDecoder(FrameExtractor.o)
"_avcodec_decode_video2", referenced from:
-[FrameExtractor stepFrame] in FFmpegDecoder(FrameExtractor.o)
"_avcodec_find_decoder", referenced from:
-[FrameExtractor initWithVideo:] in FFmpegDecoder(FrameExtractor.o)
"_avcodec_flush_buffers", referenced from:
-[FrameExtractor seekTime:] in FFmpegDecoder(FrameExtractor.o)
"_avcodec_open", referenced from:
-[FrameExtractor initWithVideo:] in FFmpegDecoder(FrameExtractor.o)
"_avcodec_register_all", referenced from:
-[FrameExtractor initWithVideo:] in FFmpegDecoder(FrameExtractor.o)
"_avformat_seek_file", referenced from:
-[FrameExtractor seekTime:] in FFmpegDecoder(FrameExtractor.o)
"_avpicture_alloc", referenced from:
-[FrameExtractor setupScaler] in FFmpegDecoder(FrameExtractor.o)
"_avpicture_free", referenced from:
-[FrameExtractor setupScaler] in FFmpegDecoder(FrameExtractor.o)
-[FrameExtractor dealloc] in FFmpegDecoder(FrameExtractor.o)
"_sws_freeContext", referenced from:
-[FrameExtractor setupScaler] in FFmpegDecoder(FrameExtractor.o)
-[FrameExtractor dealloc] in FFmpegDecoder(FrameExtractor.o)
"_sws_getContext", referenced from:
-[FrameExtractor setupScaler] in FFmpegDecoder(FrameExtractor.o)
"_sws_scale", referenced from:
-[FrameExtractor convertFrameToRGB] in FFmpegDecoder(FrameExtractor.o)
ld: symbol(s) not found for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)Please help.