
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (77)
-
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 (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)
Sur d’autres sites (10500)
-
switch between video streaming
5 décembre 2012, par user1225084I am struggling with switching between multiple live streams. For example, I have five live streaming servers streaming(HTTP or RTSP) and I want to put some broker between those (five) streaming sources and destination so that output to the destination would be one video streaming (later I may change the streaming source again using switch). Broker plays role of switcher, My question is, is there such open source "switcher" ? Or how this technology works ?
here is link to similar question but I want some open source or some brief guidance about how it could be implemented : http://forums.creativecow.net/thread/117/858680
Thank You in advance
-
Converting m4a -> mp3 on ASP.NET
2 décembre 2012, par KillnineI currently post mp3s to a site and stream it to users. However, I record in m4a and that doesn't stream unless you use flash or some special html5 implementations.
I'd like to be able to upload m4as to the site and have it converted to mp3.
There are a few implementations that wrap ffmpeg for .net, but few have any documentation (FFLIB.NET, FFmpeg.NET, FFMpeg-sharp), especially with non-video formats.
Does anyone have any ideas about tackling this issue, or maybe some alternatives ? I don't believe my host (Arvixe) supports Python on its ASP.NET packages...
EDIT : I selected Jorge's answer as, with the comments as further context, it mostly answers my question.
-
How does Xuggler's IPacket corresponds with FLV tags or tag part ?
4 avril 2012, par DimsFLV format specification is here : http://www.adobe.com/content/dam/Adobe/en/devnet/flv/pdfs/video_file_format_spec_v10.pdf
1) FLV body consists of tags
2) Each tag consists of header and data
3) Data may be
AUDIODATA
orVIDEODATA
4)
AUDIODATA
consists of descriptor byte and audio frames.My question is : what is in
IPacket
when reading FLV with Xuggler ?Currently I do extract audio frames from
AUDIODATA
in my code. I analyze first byte, deduce format, cut other data, wrap it intoIPacket
and send it toIStreamCoder
decoder, which was set up with deduced format.But may be I can entrust this to Xuggler ? May be I can create
IContainer
of FLV format and peek packets from it ?Suppose I pass
InputStream
toIContainer
. Can this stream contain just FLV body ? Will it extract audio packets correctly ?