
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (38)
-
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 (...) -
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 (...) -
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)
Sur d’autres sites (1723)
-
Copy ffmpeg live stream without overwrite previous file [closed]
2 février 2020, par PanagiotisWhen I login I automatically start a script, that downloads a radio stream with ffmpeg.
ffmpeg -i \
http://139.162.14.151:9090 \
-c copy output.mp3But each time it is asking me to overwrite the file. I want it to automatically create a new file without overwriting the previous one.
-
Copy live stream without overwrite previous file
2 février 2020, par PanagiotisWhen I login I automatically start a script, that downloads a radio stream with ffmpeg.
ffmpeg -i \
http://139.162.14.151:9090 \
-c copy output.mp3But each time it is asking me to overwrite the file. I want it to automatically create a new file without overwriting the previous one.
-
PHP NetSSH2 command dropped after few minutes
1er février 2020, par HamedI have an Ubuntu 18.04 server,
I want to run a ffmpeg command via remote SSH with PHP.
After around 5 minutes process dropped,
but it wasn’t returned any error.
I’ve tested it directly from ssh and there wasn’t any problem.
Also I’ve increased SSH Connection timeout but my problem is still.$ssh = new Net_SSH2('IP_ADDRESS');
$ssh->login('root', 'PASSWORD') or die("Login failed");
$command = "sudo ffmpeg -y -i $path/$film -vf subtitles=$path/$subtitle -vcodec h264 -crf 25 $path/$subtitled";
$ssh->exec($command);