
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (59)
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
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 ;
-
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 (7433)
-
Android : Live Stream RTMP/RTSP Player without using webview (WOWZA server)
3 février 2014, par SweetWisher ツI am developing an android application in which i want to publish as well as stream a video..
What I want is :
-
My app record a video and that video is sent to server
-
The recorded video will be streamed live to another android device at the
same time..
I have completed the first task using javac and ffmpeg
I am stuck in second task.. i have searched a lot to stream the video from server but didn't succeed..
I don't want to use WebView and play the video in It. I want RTMP player ..
This task has been completed in iOS.. I want dame for Android..
Can anyone suggest me some link to fulfill my task ???P.S. :
I am using wowza server and RTMP stream.. I would like to stream RTMP video(.flv).. If no solution available. I would like switch to RTSP and for that also, need a working link to follow..
EDIT :
Now I have switched to RTSP player [with wowza server] as i have not found RTMP player without webview. So can anyone help me with my issue ??
-
-
Android : Live Stream RMTP video from Wowza server
4 décembre 2013, par TamannaI am developing an android application in which i want to publish as well as stream a video..
What I want is :
-
My app record a video and that video is sent to server
-
The recorded vieo will ve streamed live to another android device at the
same time..
I have completed the first task using javac and ffmpeg
I am stuck in second task.. i have searched a lot to stream the video from server but didn't succeed..
I dont want to use WebView and play the video in It. I want RMTP player ..
This task has been completed in iOS.. I want dame for Android..
Can anyone suggest me some link to fulfill my task ???P.S. :
I am using wowza server and RMTP stream.. I would like to stream RMTP video(.flv).. If no solution avaliable. i can swicth to RSTP
-
-
using ffmpeg command line with python's subprocess module [on hold]
3 décembre 2013, par user1485853I have few wav files that I can use either of the following command line mentioned here to concatenate
ffmpeg -f concat -i <(for f in ./*.wav; do echo "file '$f'"; done) -c copy output.wav
ffmpeg -f concat -i <(printf "file '%s'\n" ./*.wav) -c copy output.wav
ffmpeg -f concat -i <(find . -name '*.wav' -printf "file '%p'\n") -c copy output.wavanyone know how to convert either of them to work with python's subprocess module, it would be better if your solution is platform independent .
the <(...) notation does is create a temporary file to
contain the result, and inserts that file name on the command line. so is there any way to create a temporary file by Python here ?