
Recherche avancée
Autres articles (22)
-
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...)
Sur d’autres sites (5696)
-
What is different between running gradle from CLI vs running it from Android studio GUI ?
1er mars 2016, par MissFionaExperiencing strange problem with gradle and Android Studio and I am not sure how to debug it.
I have a gradle project and need ffmpeg. I am using process builder to get the path to ffmpeg. Here is code :ProcessBuilder pb = new ProcessBuilder(new String[]{"which", "ffmpeg"});
process = pb.start();
if(process != null) {
BufferedReader sdp = null;
sdp = new BufferedReader(new InputStreamReader(process.getInputStream()));
BufferedReader serverConnection = new BufferedReader(new InputStreamReader(process.getErrorStream()));
ffmpegLocation = sdp.readLine();
error1 = serverConnection.readLine();
}If it runs from Android Studio - ffmpegLocation is null
If I run gradle from CLI - it finds ffmpeg and execute the code without any problem. -
avcodec/mpegvideo : Move MPEG-4 Simple Studio Profile fields to mpeg4video
26 janvier 2022, par Andreas Rheinhardtavcodec/mpegvideo : Move MPEG-4 Simple Studio Profile fields to mpeg4video
This is possible now that dealing with the Simple Studio Profile
has been moved to mpeg4videodec.c. It also allows to avoid
allocations, because one can simply put the required buffers
on the context (if one made these buffers part of MpegEncContext,
the memory would be wasted for every codec other than MPEG-4).Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
How to set Fontfile From assets folder in ffmpeg (android studio)
26 avril 2016, par Dhanveer thakurI want to set font file in ffmpegn from assets folder in android. Can someone suggest me how can i do that. Following is my drawtext command :-
drawtext=fontsize=60:fontfile=/system/fonts/DroidSans.ttf:fontcolor=green:text=Post:x=150:y=150