
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (111)
-
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
Que fait exactement ce script ?
18 janvier 2011, parCe script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
Installation de dépendances de MediaSPIP
Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (9708)
-
Redirecting output to different path
9 septembre 2020, par user14245857this is probably a quite easy question. I tried to solve it myself, looking at a whole bunch of different sites but couldn't find an answer.


Here it is : Change the variable "$output" so the output file of ffmpeg is written in a DIFFERENT directory than the current directory where the input files are.


Code is as follows :


$inputfiles = ls *.mxf

 foreach ($file in $inputfiles)
 
{$output = [io.path]::ChangeExtension($file, '.mp4')

 ffmpeg -i $file -map 0 -c:v libx264 -c:a aac $output}



Looking forward to your answers


Thank you very much in advance


-
encoding RGB32 frames to h264 h264_qsv ffmpeg libraries [closed]
4 juillet 2023, par T P SudhakarAm trying to port my software based encoding of RGb32 images to a h264 video using ffmpeg libraries using C++. Does h264_qsv supports encoding RGB32 images to h264 ?


Thanks in advance


-
FFMpeg Effect Zoom In and Zoom Out Video File
21 mars 2019, par Maxim_AI need to implement the effect of zooming in and out for video.
Two operations are needed.
The first operation is to set the zoom to zero at the beginning of the clip, and by the end of the clip the zoom was gradually increased twice.The second operation is that at the beginning of the video the zoom is equal to two, and by the end of the video the zoom should be zero.
That is, it is necessary for the zoom to increase / decrease smoothly throughout the entire duration of the video.
I know that Zoompad effect is used for this, but I could not use it for video.
Thank you all in advance for your help !