
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (85)
-
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 ;
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (10052)
-
Need help understanding HTML 5 audio/video meta data use and placement
27 juin 2012, par nicozI have spent a significant amount of time researching HTML 5 audio and video, however I am stuck understanding the encoding of the meta data. It seems that in my research, using programs like Handbrake (ffmpeg) it is recommend to check of "web optimized" (There is also a similar type of setting when exporting from other types of software, like imovie). I have concluded (and correct me if I am wrong) that this has to do with moving the file's meta data to the beginning of the file. This then gives the player/browser the info it requires to play immediately without having to wait to load the entire file.
So here is where I am confused and the question I need help with
Does this only apply to the mp4 MOOV atom ? Or is there something similar in .ogv and .webm files ?
-
Is there a faster video rendering solution than using AndroidBitmap_xxx functions ?
25 juillet 2012, par AlexIn my native thread I have FFMpeg getting and decoding frames then putting them in a queue.
On Java side I have a
GLSurfaceView
and fromRenderer.onDrawFrame
I'm calling into the native code passing a bitmap (that bitmap I create only once, then pass it every time).In the native code I get the head of the queue, copy data to the java bitmap using
AndroidBitmap_xxx
functions, then render that Bitmap on Java side as a texture.I wonder is there a faster way to render video ? Shall I do it entirely in the native code, if yes, why it will be faster ?
Edit : I now don't copy RGB frame pixels to the locked bitmap pixels, rather I decode YUV frame directly into the locked bitmap pixels. This makes rendering significantly faster (because no unneeded memcpy anymore) still the question remains.
-
How to change mp3 bitrate in android ?
12 avril 2013, par Doãn Thiên SầuI have a problem that need your help :
In my project, I have a mp3 file with 320kps (it's big size). So how can I change its bitrate to lower (about 80kps).
I know a library to do this, it'sffmpeg
. But to use this library very complex in Android.My question is " is there another way to change mp3 bitrate that not use
ffmpeg
in Android ".Thank you for your help !