
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 (7)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
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 (...) -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)
Sur d’autres sites (3571)
-
Revision da94b9be81 : Save 30% off tokenize_b Refactoring for speed in the same vein as detokenize_b
15 janvier 2014, par Jim BankoskiChanged Paths :
Modify /vp9/encoder/vp9_tokenize.c
Save 30% off tokenize_bRefactoring for speed in the same vein as detokenize_b...
Change-Id : I90779aa46e3b13c22ddce9a42b60e1920ad97142
-
Revision 2d381d76d8 : Simplify set_rt_speed_feature() 1. Made speed choices to be progressive 2. Adju
9 janvier 2014, par Yaowu XuChanged Paths :
Modify /vp9/encoder/vp9_onyx_if.c
Simplify set_rt_speed_feature()1. Made speed choices to be progressive
2. Adjusted rt speed settings to achieve better speed/qualityOverall, rt-5 gained 2.5% in compression/quality, encoding time of 720p
niklas clip goes from 137,052ms to 121,874msChange-Id : Ia6e7e1e15225395a868a2f1059c3db8e266e1600
-
How Opensl es on android control the audio speed ?
6 décembre 2013, par user1882379I use
NDK+FFMPEG
on android to decode an video file, and transfer the decoded pcm data to opensles for play audio .I register the opengles for the pcm format:SLDataFormat_PCM format_pcm;
format_pcm.formatType = SL_DATAFORMAT_PCM;
format_pcm.numChannels = channel;
format_pcm.samplesPerSec = rate * 1000;
format_pcm.bitsPerSample = SL_PCMSAMPLEFORMAT_FIXED_16;
format_pcm.containerSize = SL_PCMSAMPLEFORMAT_FIXED_16;also I convert the decoded pcm data to
AV_SAMPLE_FMT_S16
format usingswr_convert(...)
, but the play audio speed is very fast. but if you use sdl , the play speed is normal. It would be sdl can control the play audio speed, but opensles can not. I do not know whether it is my mistake using opensles or opensles can not control audio speed(need application to control)?