
Recherche avancée
Médias (2)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (98)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (10518)
-
How to get a standalone ffmpeg for android
26 juin 2020, par Adarsh SinghHow can I create a standalone binary of ffmpeg to execute on Android ??
I want to use it inside a kivy project which is in python3 language.


-
Build FFmpeg on windows for android
20 mai 2015, par NateI’m trying to compile FFmpeg (2.63) for an android application to do video streaming over RTMP, but the copy of make provided by the NDK isn’t working.
I’ve spent a while trying to follow the tutorial here incorporating the changes in this stackoverflow question.
I’m having a problem with the NDK provided makeHere’s my final
.build_android.sh
#!/bin/bash
NDK=C:/Users/my_user_name/AppData/Local/Android/android-ndk-r10e
SYSROOT=$NDK/platforms/android-21/arch-arm
TOOLCHAIN=$NDK/toolchains/arm-linux-androideabi-4.8/prebuilt/windows
function build_one
{
./configure \
--prefix=$PREFIX \
--enable-shared \
--disable-static \
--disable-doc \
--disable-ffmpeg \
--disable-ffplay \
--disable-ffprobe \
--disable-ffserver \
--disable-avdevice \
--disable-doc \
--disable-symver \
--cross-prefix=$TOOLCHAIN/bin/arm-linux-androideabi- \
--enable-cross-compile \
--target-os=android \
--arch=arm \
--sysroot=$SYSROOT \
--extra-cflags="-Os -fpic $ADDI_CFLAGS" \
--extra-ldflags="$ADDI_LDFLAGS" \
$ADDITIONAL_CONFIGURE_FLAG
#C:/Users/my_user_name/AppData/Local/Android/android-ndk-r10e/prebuilt/windows/bin/make.exe clean
#C:/Users/my_user_name/AppData/Local/Android/android-ndk-r10e/prebuilt/windows/bin/make.exe
#C:/Users/my_user_name/AppData/Local/Android/android-ndk-r10e/prebuilt/windows/bin/make.exe install
}
CPU=arm
PREFIX=$(pwd)/android/$CPU
ADDI_CFLAGS="-marm"
build_oneWhen I run this with the NDK provided
make
commands (the commented lines above) the program will exit immediately withmkdir: cannot create directory 'libavfilter\': File exists
if I run it with the msys provided make it will build the .so or .a file as needed, but I cannot link that file library using the NDK linker
-
Video Conversion from cross platform (IOS, ANDROID, WEB) using FFMPEG [closed]
1er août 2012, par Sunil GulabaniWe are converting videos recorded from Apple IOS and Android device. And this converted videos are being accessed from IOS, android devices and Website using Strobe Media Playback.
The videos are converted on Ubuntu Server.
We are using following command to convert video :
ffmpeg -i -s 480*800 -vcodec libx264 -acodec aac
-strict experimental -ac 2 -r 25 -ab 44100 .mp4The issue come when uploading from the IOS device that orientation changes.
By removing the "-s 480*800" the orientation issue solves, but android devices stopped playing the converted videos.
Is there any way that the converted video plays well in IOS, Android devices and Web.