
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (42)
-
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 -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 (7783)
-
create GIF image from images on android [duplicate]
8 mars 2015, par Vahagn VardanyanThis question already has an answer here :
I use android studio for work with video, images. Can add filter rotate and many many function ? But may be someone know how can I create GIF image from generated images ?
I use javacv, ffmpeg lib
-
Can't use ffmpeg 3.2 in Android project
21 novembre 2016, par world2ashishTried almost everything, spent almost 4-5 days trying and still counting.
The reason I want to compile recent version of ffmpeg is because https://github.com/WritingMinds/ffmpeg-android-java doesn’t work for video rotation. For this also I tried multiple answers, different versions of answer (transpose=1, transpose=dir=cclock, etc)
Somewhere it was mentioned that rotate command wont work with previous versions of ffmpeg, so after a lot of trials, I started working on compilation of new ffmpeg. But all the tutorials for ffmpeg belong to earlier versions (of Android NDk, ffmpeg) which wont work with ffmpeg 3.2 and NDK r13b (I also tried with NDK downloaded by studio itself but no luck). In case it worked for you, please help.
After a lot of frustrating experience I am writing this. Please help with a workflow or a clear direction. Thanks
Wasnt able to tag ffmpeg3.2 because of reputation.
-
C# FFmpeg Dynamic-Link Library
25 juillet 2022, par iltanI need FFmpeg as dll for C#. I want to do something like ;


static void Convert(Stream onlyAudioStream, Stream onlyVideoStream, string path)
{
 FFmpegNameSpace.FFmpeg ff = new FFmpegNameSpace.FFmpeg();
 ff.AddInput(onlyAudioStream);
 ff.AddInput(onlyVideoStream);
 ff.Save(path);
}



And the problem is I don't know how can i get ffmpeg dll.


Example :
I did this before in libwebp. Things we need to do to get libwebp dll ;
1- Download libwebp source
2- Open Visual Studio 2019 Developer Tools
3- Run command in libwebp source directory "nmake /f Makefile.vc CFG=release-static RTLIBCFG=static OBJDIR=output"
4- Done you will find dll in output directory


Edit : I searched a lot and couldn't find the solution. I decided to use ffmpeg.exe whenever I need it.
Thank you all