
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (48)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
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
Sur d’autres sites (5695)
-
How to implement FFMEG library for android video streaming
10 mai 2014, par KabirI am trying to create online streaming video player in android.
I am trying to compile theappunite/AndroidFFmpeg
library for android application to playHLS videos
online. I am usinglinux-ubuntu OS
I also have set theNDK path
.
I have executed all command one by one given on the link :But when I executed the following script :
./build_android.sh
I got the following error :
abi-gcc —sysroot=/home/singsys-063/android-ndk-r9d/platforms/android-5/arch-arm/
checking whether the C compiler works... no
configure : error : in
/home/singsys-063/AndroidFFmpeg/FFmpegLibrary/jni/vo-amrwbenc :
configure : error : C compiler cannot create executables
See config.log for more details -
How to install ffmpeg using xampp
28 avril 2014, par Paul LedgerI am trying to install ffmpeg onto my localhost server. I have followed countless blogs and tutorials online form other people who are stuck with this same problem. I follow everything to the letter.
- Unzip the file
- Copy php_ffmpeg.exe to ext folder in php
- copy the rest to system 32
As it says however when I do this I get this error when I start apache.
Fair play but it is in the folder
I also get this error as well :
And Again, here it is :
I have added the extention to my php.ini file
extension=php_ffmpeg.dll
The first time I go this to work I placed the ffmpeg.exe file onto my local host server and ran commands like this :
$cmd = "$ffmpegpath -i $input -an -ss $sec -s $size $output";
shell_exec($cmd);This works fine on my computer but not on an actual server. Could somebody offer some advice or guidene on where I have one wrong installing the extension or why running the .exe file on a lunix server with shell_exec doesn’t work
-
Zooming animation in FFMPEG
2 novembre 2015, par dmcontadorI need to make a zooming animation for a video input.
Making a panning animation is possible with the
crop
filter with something like this :"crop=320:240:max(0\\,min(iw-ow\\,n)):0"
Where the first two parameters, width and height, are fixed, and the second two parameters, accept frame number
n
or timestampt
as expression parameters.But width and height are evaluated only once (and cannot use
n
ort
), so I cannot crop a size in function of time and then apply ascale
filter to the original size.I know I can :
- Change the filter after pulling each frame from the buffersink (I’m not in the command line, I’m using the libraries in my software). I’m doing that already, but no for every frame, only by user request in an online application.
- Use
geq
filter to "apply a generic equation to each frame".
Both approaches seem expensive. Is there another filter or approach I could use ?
Note that I’m using zeranoe FFMPEG libraries in Windows. I’d rather not develop my own filters or modify FFMPEG source.