
Recherche avancée
Médias (2)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (86)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 (...) -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
Sur d’autres sites (14793)
-
Any Java library for live media streaming ? [on hold]
29 novembre 2016, par NiconoidI’m developing a personal project which consists basically in a Java server reading the System’s Stereo Mix and streaming all the content through HTTP into a HTML5 player in a webapp.
I’ve been searching for days how to achieve this through a library as making it from ground up would be overly tedious and will take too much time. I’ve just found Red5, which isn’t useful as I want to stream purely over HTTP, and ffserver (ffmpeg) that has been dropped months ago.
Which alternatives do I have related to Java-based libraries in terms of live streaming over HTTP ?
-
Is there a way to use InputStream to get the media details
13 mai 2019, par NamanI am currently accepting
InputStream
from a client of my server for aFile
uploaded via multipart/form-data.I am currently using
ffmpeg-cli-wrapper
library to useffprobe
andffmpeg
.The challenge I see up front is that the APIs exposed by the client doesn’t make use of a stream, rather a
mediaPath
. Is there a way/library similar to this which can provide me an FFProbe instance as shown in the usage example of the library.To add to the pain, I am aware of transforming the
InputStream
into a file and then passing themediaPath
. But that’s an unnecessary space on my processing disk and an additional step for cleanup as well. -
Media contaner which supports uncompressed audio and video
21 juin 2017, par Denis KokorinI want to produce uncompressed video and audio programmatically and feed it via stdin to ffmpeg.
I need uncompressed, because I don’t want to encode video and audio in my code.I found here the way to create video only file from uncompressed rgb24 input stream. But I do need to create both video and audio.
Which container supported by ffmpeg can contain uncompressed video and audio ?