
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (107)
-
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 (...) -
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 (...)
-
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site
Sur d’autres sites (13630)
-
reason why encoder and media server is distributed [closed]
11 mars 2023, par nkee YaI planned to implement Streaming site using Java and have a few questions. If my knowledge is wrong, please correct them.


- 

- flow chart is video - encoder - media server - cdn - video player - client
- I want to know what each components' (video, encoder, media server, cdn,v ideo player) roles are. (especially media server and video player..)
- I planned to implement media server and use ffmpeg which encodes video and I think it acts as an encoder in flow chart.
- why using RTMP between encoder and media server ? Isn't streaming protocol HLS used when the media server sends a video to the user because it's streaming that plays files in real time without the need for viewers to download all the files ? Why is the streaming protocol used to send videos from the encoder to the media server ?










Have any data about my title, link please.
I googled data about my title, but I'm confused what each components' roles are.


-
difference between using SDL and using media player class that is videoview
21 janvier 2014, par WhoamiI have been surfing the net for some time to get basic understanding of media framework in android. As part of this,
To display video we have media player class or video view component which can easily display the video. When we have such solution provided by the framework itself, then why there are few components avaiable like SDL [ Simple Direct Media Layer], which claims the same functionality as video view.?
How both are different ?
Kindly bare with me, if the question is very basic.
-
How to extract frame from video and save it into memory ?
11 septembre 2012, par AlrickI tried extract frame and save it as output.jpg On server side :
f = "ffmpeg -vframes 1 -y -ss "+time+" -i ./media/somemov.mp4 ./media/output.jpg"
subprocess.call(f, shell=True)And on client side used :
getImage(noOfFrame); //send the request for call the ffmpeg function from views.py
document.getElementById("main").style.backgroundImage="url(http://localhost:8000/media/output.jpg#"+ new Date().getTime();+")";But its too slow. DIV displays always the old image becose creates image takes a long time.
for example i want image no 3 and DIV has no 2, i want image no 4, and div has no 3.Is there any way how to extract frame from video (by ffmpeg) and send it into Python without creation the output.jpg file ?
I want get the image data and send it from server (django) to webpage and set it as background-image of any DIV.
Is the "pure data sending" solution better then mine ?
Thanks for help.