
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (83)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)
Sur d’autres sites (7242)
-
Get bitmap / thumbnail from a streaming video with format like .mp4, .3gp in Android ?
12 janvier 2016, par AndrozrI am working on ListView which on item click redirecting to a video link.
I explain my problem :I have three types of videos :
- Youtube
- Dailymotion
- Other formats from streaming video like this one : Video Link
I am trying to get thumbnail to get it in my ImageView from my item of my ListView. I encoutered a problem, I get Youtube thumbnail, Dailymotion thumbnail but I couldn’t get thumbnail for other formats.
I tried to use MediaMetaDataRetriever class but nothing happens.
Here is the line where I tried to get my bitmap :
We are in my VideoAdapter class in the getView method.
holder
is my ViewHolder class andthumbVideo
is my ImageView.Here is differents lines I tried :
holder.thumbVideo.setImageBitmap(createVideoThumbnail(m_Context, Uri.parse(m_Video.getM_Preview())));
m_Video
is my Video class and the methodgetM_Preview()
is getting the link of video thumbnail.Here is my
createVideoThumbnail(Context context, Uri uri)
method :public Bitmap createVideoThumbnail(Context context, Uri uri) {
Bitmap bitmap = null;
MediaMetadataRetriever retriever = new MediaMetadataRetriever();
try {
retriever.setDataSource(context, uri);
bitmap = retriever.getFrameAtTime(-1);
} catch (RuntimeException ex) {
} finally {
try {
retriever.release();
} catch (RuntimeException ex) {
}
}
return bitmap;
}I am looking an answer for 4 days. If anybody know how I can do, it’ll be helpful
-
Anomalie #4623 : Styles des fieldset dans l’espace privé
17 avril 2021Oui, j’avais pas pensé au coup des ul / li d’avant.
Le constat que je vois c’est que
- soit tu as la structure :- <span class="CodeRay"><span class="tag">form</span>
- <span class="class">.editer-groupe</span>
- <span class="class">.editer</span><span class="class">.fieldset</span>
- <span class="tag">fieldet</span>
- <span class="class">.editer-groupe</span>
- <span class="class">.editer</span> ...
- </span>
- soit :
- <span class="CodeRay"><span class="tag">form</span>
- <span class="tag">fieldet</span>
- <span class="class">.editer-groupe</span>
- <span class="class">.editer</span> ...
- </span>
La différence vient de "est-ce que j’ai d’autres champs à la racine que des fieldset" : si oui je dois mettre un .editer-groupe, sinon, le
.editer-groupe + .editer.fieldset
racine ne sert à rien et on peut enchainer des fieldset directement... -
Piping to ffmpeg on windows
8 septembre 2021, par Totte KarlssonI'm planning to pipe live image data (bitmaps) to ffmpeg in order to create an AVI file.



Looking at the ffmpeg docs regarding pipes, https://ffmpeg.org/ffmpeg-protocols.html#pipe, it only mentions UNIX pipes.



I'm planning using the technique described here : is it possible to send ffmpeg images by using pipe ?



Is there a major difference on Windows that causes piping data to ffmpeg not working on Windows ?