
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (111)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (14321)
-
playing multiple intervals of a video [on hold]
6 juin 2018, par gagan singhI have a video. I know how to play one interval say 10s-20s.
How do I play multiple intervals, say 10s-20s then immediately 30s-50s and so on ?
I am also fine with running ffmpeg -c once to extract the combined stream of my time ranges.
In one of the ffmpeg query, some one mentioned edit list support in some video players. What is that ?
I am fine with playing the video with any linux video player, vlc, mplayer etc.
anything which can play something like the following.player —intervals=10-20,30-50 video.mp4
basically for a movie, I want to play selected intervals of the movie, instead of the whole movie.
I hope this makes my question clearer.
-
What are the APIs for hardware accelerated video decoding in phones ?
11 janvier 2012, par cloudravenI have seen many smartphones coming with hardware accelerated video decoding supporting mpeg2 and h264, but unlike in desktop and laptop systems, it is not clear to me how to interact with the hardware acceleration.
For desktops/laptops there is DXVA, VDPAU and OpenMax.
Is any of those supported in Mobile phones ? I think OpenMax is, but I am not sure of how widely supported it is.Is anyone familiar with what is usually used to write hardware accelerated media players and decoders for platforms like Snapdragon, Tegra 2 or Omap 4 running Android or Windows Phone ?
I know that ffmpeg can be compiled for arm and I wonder what kind of hardware video acceleration it supports on that platform. -
FFMEPG Audio Encoding, How to get optional frame_size of the CodecContext and get right ouput
23 octobre 2014, par 程栋彬I’m trying to encode pcm format audio using ffmpeg, because the pcm data is of FLTP format, I use audio codec AV_CODEC_ID_AC3 or AV_CODEC_ID_MP3, when I use avcodec_open2(pCodecCtx,pCodec), the pCodecCtx->frame_size was set by this function, for example, it is set as 1536. But the pcm data I get was saved by frame_size = 512. I don’t to do the data transfer, so I just change pCodecCtx->frame_size to 512 after avcodec_open2(), but the output encoded audio sounds wrong.
So how to encode audio with optional frame_size when the input is pcm data saved in FLTP format ?