
Recherche avancée
Médias (10)
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (99)
-
Création définitive du canal
12 mars 2010, parLorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
A la validation, vous recevez un email vous invitant donc à créer votre canal.
Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...) -
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 (...)
-
Initialisation de MediaSPIP (préconfiguration)
20 février 2010, parLors de l’installation de MediaSPIP, celui-ci est préconfiguré pour les usages les plus fréquents.
Cette préconfiguration est réalisée par un plugin activé par défaut et non désactivable appelé MediaSPIP Init.
Ce plugin sert à préconfigurer de manière correcte chaque instance de MediaSPIP. Il doit donc être placé dans le dossier plugins-dist/ du site ou de la ferme pour être installé par défaut avant de pouvoir utiliser le site.
Dans un premier temps il active ou désactive des options de SPIP qui ne le (...)
Sur d’autres sites (6258)
-
Developing a video streaming app [on hold]
14 avril 2014, par Blue GeneI'm developing an app that is peer to peer video streaming, I will use a server to connect the users but the video will be streamed peer to peer.
My main requirement is that its that fastest to connect users, i.e make the users see each other in less than 5 secs tops, So whats the fastest protocol I can use in order to make such a connection ?
I'm thinking about what protocols to use, since there are so many of them, What would give the best (fastest) results :
RTMP,RTMFP,WebRTC ?
Should I use ffmpeg ? I couldn't understand why it is used for.
I am thinking about using H264.
I was using TokBox and QuickBlox, but north are pay-per-users/minutes, And I want to have the users stream one to another, the server will be used only for connecting them.
Thanks.
-
Developing android app in window(O.S) with ffmpeg library
19 avril 2014, par PKTomarI want to develop an application by the help of "ffmpeg" library. My developing environment is Windows(O.S.) based. I done lot of Google but find all the tutorial which are linux(O.S.) based.
That's why i download "Cygwin". I try to follow all the steps as in linux based tutorial.
http://www.roman10.net/how-to-build-ffmpeg-with-ndk-r9/comment-page-3/
But I stuck on running following command :
"sudo chomd +x build_android.sh" when entering passphrase it gives error "Command Not Allowed". Actually this command used to check that build_android.sh file is executable or not. That's why I skip this step and run another command "./build_android.sh" which is used to create folder "android" in ffmpeg library. But this command give many errors. I try to remove one by one but after removing one error getting another list of errors.
After all these step I feel that there is some problem in executing script file in windows base environment.
Now I need help, any tutorial which is completely based on windows(O.S.) based.
:Thanks :
-
Best practices for developing scalable video transcoding server on Amazon Web Services ?
6 septembre 2016, par undefinedWhat do people think are the most important issues when developing an application that is going to allow users to upload video and images to a server and have them transcoded by FFMPEG and stored in amazon S3 ? I have a couple of options ;
1) install FFMPEG on the same server that handles file uploads, when a video is uploaded and stored on EC2 instance, call FFMPEG to convert it then when done, write the file to S3 bucket and dispose of the original.
How scalable is this ? What happens when many users upload at the same time ? How do I manage multiple processes at once ? How do I know when to start another instance and load balance this configuration ?
2) Have one server for processing uploads (updating database, renaming files etc) and one server for doing transcoding. Again what is the best way to manage multiple processes ? should I be looking at Amazon SQS for this ? Can I tell the transcoding server to get the file from the upload server or should I copy the file to the transcoding server ? Should I just store all files on S3 and SQS can read from there. I am trying to have as little traffic as possible.
I am running a linux box as the upload server and have FFMPEG running on this.
Any advice on best practices for setting up such a configuration would be appreciated. Many thanks