
Recherche avancée
Médias (3)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (5)
-
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
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 (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...)
Sur d’autres sites (4166)
-
ffmpeg Build Output is not showing ?
1er juillet 2014, par Sandeep TiwariI am working on Ffmpeg last couple of days but unable to get any valuable output.
After that I follow bellow tutorial :-
http://www.roman10.net/how-to-build-ffmpeg-with-ndk-r9/
According to that tutorial. Once it’s done, you should be able to find a folder
$NDK/sources/ffmpeg-2.0.1/android
, which containsarm/lib
andarm/include
folders.
But I am not getting build output in$NDK/sources/ffmpeg-2.0.1/android
.
Please anyone help me.thanks.
-
FFMPEG library rotates video after trim automatically
26 janvier 2015, par RufatetI want to trim recorded video with ffmpeg library .
Built with NDK, all ok.
Then I try to trim video my video-trimmer.c .
Video trimmed after called command. But rotates video :(
I lose many days, however could not solve this problem.
These are arguments which I used :arguments[0] = "ffmpeg";
arguments[1] = "-i";
arguments[2] = in;
arguments[3] = "-ss";
arguments[4] = start;
arguments[5] = "-t";
arguments[6] = duration;
arguments[7] = "-acodec";
arguments[8] = "copy";
arguments[9] = "-vcodec";
arguments[10] = "copy"; -
does ffmpeg allocate memory and will not release immediately when encoding and decoding ?
24 juin 2021, par Tangtooi want to transform videos to jpeg and wav as output. I wrote the programm by myself with FFmpeg-api. The video(.webm e.g.) is decoded and video and audio frames are encoded to jpeg and wav. With running of the program, more and more videos are converted but more and more rss are used(top cmd in linux).


I have also used valgrind to test if there is memory leak. And there is None.


The rss increases not linear and like follows(just example) :


1 video : 30m
2 video : 150m
3 video : 200m
4 video : 220m
5 video : 220m
6 video : 230m


The programm run in docker container and k8s with memory limit(2G). After days(about 30000 videos are processed for example) the pod will be force restarted.


Is it real memory leak ? Or these memory are keeped by ffmpeg lib as memory pool or something ?
Thanks