
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (32)
-
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 -
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 (...)
-
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (6730)
-
php_ffmpeg extension installed, want to know available classes in this extension [on hold]
25 septembre 2013, par user2808180I have successfully installed the php extension "php_ffmpeg" and it is working fine. I tested the extension with class ffmpeg_movie and It shows me complete information of the file.
But the problem is to convert any uploaded video file to flv. Is there any classes available in the extension 'php_ffmpeg', I would like you to share some sample code for that.
I will like to stick to php code as I am not sure that I might not get access to the share server shell.
I also tried exec, on my Windows Based local machine, but I haven't found success beyond "DIR" command.
Please if you have some knowledge about "php_ffmpeg" extension and classes available in it, with example code or know some resource which include that please help me.
$return = 1;
$output = array();
$source = $_SERVER['DOCUMENT_ROOT'] . '/sample.avi';
$target = $_SERVER['DOCUMENT_ROOT'] . '/target.flv';
$cmd = "ffmpeg -i {$source} {$target}";
exec($cmd, $output, $return);
echo '<pre>'; print_r($output); echo '</pre>';
echo $cmd; -
Android simple video editor app [on hold]
30 mars 2014, par gopgopI am working on a small android project..
The goal of the app is to pull video files from the library or images and combine those into a video and save it into the library.
I already have made the part where it pulls the images and videos, now I am stuck..
How would you go about combining the images and videos to make one video file using java and android ?
Can someone please guide me ?
I have looked around and did not find any clear winner,
I'd prefer not to use FFmpeg as its not pure java..Thanks.
-
Convert and stream videos [on hold]
26 septembre 2013, par user969068I am going to develop a php script on linux based server which will be used to upload videos on server and stream to users. I have seen many open source free/paid libraries available with flash,html5 etc players. After research I have decided to go with ffmpeg to convert videos and use jwPlayer with RTMP protocol to stream videos.
I am not much familiar with streaming concept but I have researched a lot on this subject since few days, so last I thought to ask here if I am going the correct way to achieve my goals, which are listed below :
- My main concern is to start streaming videos as soon page is loaded.
- Convert videos after upload ( Found ffmpeg for this purpose is well suited )
- Seeking video should be faster (which after searching I found is good with RTMP protocol)
Please can someone guide me if I am going in the right direction by choosing ffmpeg, jwplayer with RTMP protocol. Thanks a lot for any guidance.