
Recherche avancée
Médias (2)
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
Autres articles (78)
-
Utilisation et configuration du script
19 janvier 2011, parInformations spécifiques à la distribution Debian
Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
Récupération du script
Le script d’installation peut être récupéré de deux manières différentes.
Via svn en utilisant la commande pour récupérer le code source à jour :
svn co (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
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 (5852)
-
Transcode to virtual device/memory in VLC
27 septembre 2013, par AtrotygmaI have a unicast h264 stream from a video transmitter. Now, I would like to view the stream in a web browser using HTML5s tag. For this, I have to transcode it first via VLC to theora/ogg and then streaming it out as a HTTP stream. This works fine for 1 client, but since HTTP streaming isn't multicast, I have the fear that my server will break down really quick because VLC will transcode the input stream for every additional client request.
For this reason, I'd like to write the transcoded stream in something like a 'virtual device' or memory or any other form of temporary storage (but dear god, NO files, I don't want to destroy my hard disk). Then, I would like to grab the transcoded stream with a secondary VLC instance and stream it via HTTP, so that in the end, I have to transcode it only once for all clients.
In steps :
- [DONE] Grab H.264 unicast stream from transmitter via RTSP
- VLC instance 1 transcodes it to theora/ogg and writes it to a temporary memory
- VLC instance 2 reads from the memory and streams it via HTTP
- [DONE] Browser requests HTTP stream via HTTP live Streaming (html5 video).
Is this possible in any way ?
-
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.
-
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 ?