
Recherche avancée
Autres articles (100)
-
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 (...) -
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) ; (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)
Sur d’autres sites (9643)
-
fate : split mxf test dependencies to DV and MPEG2
28 mars 2023, par Marton Balint -
FFMPEG Python : Encountered scale(1920, 1080) with multiple outgoing edges with same upstream label None ; a `split` filter is probably required
2 janvier, par Lysander CoxHere is the code in question :


for comment in thread['comments']:
 commentClips += fragmentConcat(comment, filePrefix)
 
 staticClip = ffmpeg.input('assets/static.mp4')
 commentClips.append(staticClip
 .filter('setsar', 1, 1)
 .filter('scale', 1920, 1080)
 )
 commentClips.append(staticClip.audio)



This code generates the following error :


ValueError: Encountered scale(1920, 1080) <6adb028f8ef5> with multiple outgoing edges with same upstream label None; a `split` filter is probably required



I have tried using only the video part of the input for the first call (e.g.
staticClip['v'].filter...
), and I have tried using thesplit
call as suggested (e.g.ffmpeg.input(...).split()
. Nothing has worked. What is the issue, and how can I rememdy it ? Thanks.

-
split multiple original videos into multiple videos of length 10s with ffmpeg in windows 10
16 septembre 2021, par Game Replayi can split 1 video into small 10s videos. but how to automatically batch split videos in 1 folder
this is my code :


ffmpeg -i input.mp4 -vcodec copy -acodec copy -map 0 -segment_time 00:00:10 -f segment output%03d.mp4



HELP ME !!!