
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (25)
-
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 (...) -
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 (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (5747)
-
Multiple definition of 'ff_log2_tab'
16 mai 2016, par scoobyI am trying to build ffmpeg for Android, which is an LGPL version. At the end, when I try to combine the *.so to form the libFFmpeg.so it is giving the following error :
/home/kganlite/android-ndk-r9c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin/../lib/gcc/arm-linux-androideabi/4.6/../../../../arm-linux-androideabi/bin/ld : error : libavcodec/log2_tab.o : multiple definition of ’ff_log2_tab’
/home/kganlite/android-ndk-r9c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin/../lib/gcc/arm-linux-androideabi/4.6/../../../../arm-linux-androideabi/bin/ld : libavutil/log2_tab.o : previous definition here/home/kganlite/android-ndk-r9c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin/../lib/gcc/arm-linux-androideabi/4.6/../../../../arm-linux-androideabi/bin/ld : error : libavcodec/reverse.o : multiple definition of ’ff_reverse’
/home/kganlite/android-ndk-r9c/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86/bin/../lib/gcc/arm-linux-androideabi/4.6/../../../../arm-linux-androideabi/bin/ld : libavutil/reverse.o : previous definition here
....linux-androideabi/bin/ld : fatal error : /libffmpeg.so : open : Permission denied
collect2 : ld returned 1 exit statusI am using the following command to build the libFFMpeg.so
arm-linux-androideabi-gcc -lm -lz -shared --sysroot=$SYSROOT -Wl,--no-undefined -Wl,-z,noexecstack $EXTRA_LDFLAGS libavutil/*.o libavutil/arm/*.o libavcodec/*.o libavcodec/arm/*.o libavformat/*.o libswresample/*.o libswscale/*.o -o $PREFIX/libffmpeg.so
I know there are discussions regarding this issue in a few links but none of them helped for me. e.g. I tried to follow
Unable to port FFmpeg C library into android
but still the issue persists.How can I fix this ?
-
Compile ffmpeg, opus & x265 for android
6 juin 2014, par weterI’m trying to compile ffmpeg with libx265 & libopus, but I can’t configure opus with
./configure --target=armv7-android-gcc --sdk-path=/home/weter/android/android-ndk-r9d
configure: error: unrecognized option: `--sdk-path=/home/weter/android/android-ndk-r9d'And x265 project based on cmake, but I never compile using cmake for Android.
-
Map the second stream when the first stream ends in FFMPEG
20 août 2021, par CencodeI have three ffmpeg commands. First one is used to stream a video.


ffmpeg -re -i /home/Channel/1.mp4 -f mpegts "udp://236.2.2.4:2000"



Second stream will send a looping image.


ffmpeg -loop 1 -i /home/Channel/black.png -c:v libx264 -tune stillimage -shortest -f mpegts "udp://236.2.2.4:2001"



I have a third ffmpeg command to map the above two streams and select a one for the output.


ffmpeg -i "udp://236.2.2.4:2000" -i "udp://236.2.2.4:2001" -map 0 -map 1 -f mpegts "udp://236.1.1.4:2000"



From this ffmpeg command first stream will be played.
Will it be possible to chose the second stream automatically once the first stream is finished ?