
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (58)
-
Encodage et transformation en formats lisibles sur Internet
10 avril 2011MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 (...)
Sur d’autres sites (8372)
-
failed to run ffmpeg player on android
14 juin 2014, par HogunI get source from AndroidFFmpeg.
and I succeeded to build FFmpegLibrary project and FFmpegExample.
When I installed a app on G2 phone, ran the app well.
but when I installed it on Galaxy S3, the app is killed by failed ffmpeg-neon.so load.I have environments blow,
- Ubuntu 12.04 LTS 64bit
- Android NDK r9d
- Android Toolchain 4.6
- FFmpeg 2.2
06-14 16:22:05.181: D/dalvikvm(26430): Trying to load lib /data/app-lib/com.example.ffmpegbasic-1/libnativetester-jni.so 0x42dbfb58
06-14 16:22:05.181: D/dalvikvm(26430): Added shared lib /data/app-lib/com.example.ffmpegbasic-1/libnativetester-jni.so 0x42dbfb58
06-14 16:22:05.181: D/dalvikvm(26430): Trying to load lib /data/app-lib/com.example.ffmpegbasic-1/libffmpeg-neon.so 0x42dbfb58
06-14 16:22:05.186: A/libc(26430): Fatal signal 11 (SIGSEGV) at 0xdeadbaad (code=1), thread 26430 (ple.ffmpegbasic)and i also try on android toolchain 4.8 but i see the same error.
What do i try now ? Help me please... -
How to install ffmpeg in android studio for OSx ?
25 mai 2016, par R. JariI need to use ffmpeg for my android project. But I couldn’t find any relevant articles for this. Can anyone guide me to integrate ndk in my android studio for mac OSx.
-
avformat/aviobuf : fix flushing write buffers after seeking backward or forward
3 juin 2017, par Marton Balintavformat/aviobuf : fix flushing write buffers after seeking backward or forward
This patch makes aviobuf work more like traditinal file IO, which is how people
think about it.For example, in the past, aviobuf only flushed buffers until the current buffer
position, even if more data was written to it previously, and a backward seek
was used to reposition the IO context.From now, aviobuf will keep track of the written data, so no explicit seek will
be required till the end of the buffer, or till the end of file before flushing.This fixes at least one regression, fate-vsynth3-flv was broken if
flush_packets option was set to false, an explicit seek was removed in
4e3cc4bdd8acedbcc703607ed0efbb64bb5c3cc4.Also from now on, if a forward seek in the write buffer were to cause a gap
between the already written data and the new file position, a flush will
happen.The must_flush varable is also removed, which might have caused needless
flushes with multiple seeks whithin the write buffer. Since we know the amount
of data written to it, we will know when to flush.Signed-off-by : Marton Balint <cus@passwd.hu>