
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (102)
-
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 (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (11544)
-
anyone can advice on giving what is wrong with my code [closed]
27 novembre 2019, par Go0odWhat is wrong with my code ? I am using pyqt5
def widger_screen(self):
pan = QWidget.grab(self.centralwidget)
#p.save("pilt3.jpg")
ffmpeg
.input(pan, ss=time)
.output(green.png, vframes=25)
.run() -
can you help me customize the ffmpeg code ? [closed]
24 octobre 2023, par Fargo GofarI want to modify this code to change the name (a random set of characters including letters and numbers 10-20 characters long) of all videos of all extensions in the current folder :


FOR /F "tokens=*" %%G IN ('dir /b *.mp4') DO ffmpeg -i "%%G" ( YOUR COMMAND) "%%~nG_1.mp4"



-
FFmpeg - PHP Error Code 127
25 avril 2013, par KitI am trying to execute FFmpeg from php. I have installed FFmpeg-php, and the extension is in the modules directory and it shows up in phpinfo. FFmpeg is working fine as I can run the command in a terminal and it outputs the video. However, when I try and run the command from php using the following script :
exec(ffmpeg -i input.avi output.avi);
But I get a '127' error code.
The extension is loaded in using :
$extension = "ffmpeg";
$extension_soname = $extension . "." . PHP_SHLIB_SUFFIX;
$extension_fullname = PHP_EXTENSION_DIR . "/" . $extension_soname;
// Locate Extension
define('FFMPEG_LIBRARY', '/usr/local/bin/ffmpeg');
// Load Extension
if (!extension_loaded($extension))
echo dl($extension_soname) or die("Can't load extension $extension_fullname\n");I have also tried defining the aboslute extension location in the command :
exec(/usr/local/bin/ffmpeg-i input.avi output.avi);
Again, this works in the terminal but still returns the same erro code using the php exec().
Has anyone got any ideas ?
Thank you.