
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 (63)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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
Sur d’autres sites (10144)
-
Has anyone gotten a windows build of FFMPEG to publish to Akamai's CDN via RTMP ?
3 décembre 2013, par Ken ConnerI am trying to live stream a file to Akamai's servers via RTMP from flash and I cannot get past the authentication step even though I know I am using the right username and password (the credentials work in FMLE). I Have found some posts online but they are older and its difficult because no one ever reports what build of FFMPEG they are using.
Has anyone gotten this to work with Windows binaries ?
-
Windows again
24 septembre 2013, par Mikko Koppanen — ImagickSeems like the new Windows build system is online and Imagick for Windows is now provided here :
-
PHP - Problems running ffmpeg.exe with shell_exec on Windows
30 septembre 2012, par KingI am trying to encode an FLV file to MP4 with ffmpeg.exe, its all working fine when running the code on the commandprompt (I have tried simply echoing the command and pasting it into the cmdline)
Note : Using windows.
Here is the code :
it does not return anything, and does not encode anything, there are no errors, nothing happens :(,system($cmd, $returnval)
returns1
that's all
running commands likedir
works fine, so I have the required access.<?php
$title = $_GET['file'];
// encoding command > , below shows info "flv/'.$title.'.flv" "mp4/'.$title.'.mp4"
$cmd = ('cd C:/inetpub/wwwroot/run/ && ffmpeg.exe -i "flv/'.$title.'.flv"');
$ll = system($cmd, $fv);
echo "CMD: $cmd \nFull output: $fv \nLL = $ll";
?>ffmpeg.exe -h will return the help text, I am starting to wonder if it could have something to do with the other outputs having colours in them ?
Any ideas ? :O
(The cd is not the problem because
$cmd = ('cd C:/inetpub/wwwroot/run/ && ffmpeg.exe -h');
works fine, its actually already in that directory)