
Recherche avancée
Médias (1)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (28)
-
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 (...) -
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (5635)
-
Android Third Party Media Player SDK to replace Default MediaPlayer under Apache Licence [on hold]
22 avril 2015, par Amanda FernandezI googled a lot and found that there is no way we can alter the buffer size of default media player. So, need to use custom player. I found 2 libraries :
1. ffmeg
2. gStreamerBut both are under GNU licence.
I have confusion on its licence.If I’m using these 2 libraries, then do I have to make my app source code open source.?
Also, came across brightcove library. It’s native videoplayer NDK. Can It be sued for streaming audio.Is there any other 3 party libraries available for media player ?
-
Third party Mediaplayer SDK
22 avril 2015, par Amanda FernandezI googled a lot and found that there is no way we can alter the buffer size of default media player. So, need to use custom player. I found 2 libraries :
1. ffmeg
2. gStreamerBut both are under GNU licence.
I have confusion on its licence.If I’m using these 2 libraries, then do I have to make my app source code open source.?
Also, came across brightcove library. It’s native videoplayer NDK. Can It be sued for streaming audio.Is there any other 3 party libraries available for media player ?
-
Problem with ffmpeg function avformat_seek_file()
19 avril 2013, par KaelI am trying to seek the given frame in the video using ffmpeg library. I knew that there is
av_seek_frame()
function but it was recommended to useavformat_seek_file()
instead. Something similar mentioned here. I know thatavformat_seek_file()
can't always take you to exact frame you want, but this is ok for me. I just want to jump to the nearest keyframe. So i open the video, find videostream and calling it like this :
avformat_seek_file( formatContext, streamId, 0, frameNumber, frameNumber, AVSEEK_FLAG_FRAME )
. It always returns 0, so i understand it as correct finish. However, it doesn't work as it should to. I check byte position like here before and after callingavformat_seek_file()
. Actually it changes, but it changes always in the same way whenever i'm trying to put different target frame numbers ! I mean that byteposition after this call is always same even with differentframeNumber
values. Obviously, i'm doing something wrong but i don't know what exactly. I don't know if it does matter but i'm using .h264 files for that. I tried different flags, different files, using timestamps instead of frames, flushing buffers before and after and so on but it doesn't work for me. I will be very grateful if someone could show me what is wrong with it.