
Recherche avancée
Médias (2)
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
Autres articles (110)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (13666)
-
How to play RTMP video by using LibRTMP, not FFmpeg ?
28 avril 2014, par Smeegol XieI want to play
RTMP
video by usingLibRTMP
notFFmpeg
, becauseFFmpeg
build is so big and LibRTMP just can playRTMP
stream. The color encoding isYUV420P
, my solution is to draw images frame by frame.So the Question is HOW to convert
YUB420P
to RGB and playRTMP
video ? -
Cannot play the video encoded using ffmpeg command [on hold]
26 juin 2013, par user2523824I have been struggling to play the videos encoded using ffmpeg command in PHP.
Please see the URL
The JW Player doesn't work on the Firefox 21.0 for Windows7 64 Bit.
And also,
Sometimes, When I upload any video and encode by ffmpeg command, some of the videos doesn't be play on the Chrome, IE9/10.
Here is the ffmpeg command to encode.<code>
//////////////////I tried the command in PHP//////////////////////
$cmd = "ffmpeg -y -i original.wmv -vcodec libx264 -crf 25 -pix_fmt yuv420p -acodec libfaac new.mp4 > /dev/null 2>&1";
echo shell_exec($cmd);
//////////////////////////////////////////////////////////////////How do I have to implement the ffmpeg command to play within all the browser ?
Please help me.Kind regards
Niao Jina -
Android and ffmpeg. Play video (with sound)
18 février 2014, par bukka.whI have compiled ffmpeg library add it to my project and now I want to play video (with full list of options - stop, pause, forward, backward etc). I have read roman10 ffmpeg tutorial. And I also find out tutorial which describes how play video with ffmpeg and SDL framework. The difference (if I have correctly understood) is that in roman's tutorial each frame of video turns into a Bitmap and is then passed to Java code where it shows on SurfaceView. And in the second tutorial, the video is playing with the help of the SDL framework without passing it back to Java code.
I want to ask some questions :
- Which way is better : return Bitmap back to Java and show it on SurfaceView or play it with SDL ?
- How can I play the sound of my video (can I do it with ffmpeg or do I need some additional libraries) ?