
Recherche avancée
Médias (3)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (49)
-
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 (...) -
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (5002)
-
flutter :can i make the input file & the output file the same in ffmpeg command ?
17 juillet 2022, par Khaled MortajaI am using this command for applying a crop operation on a video stored on my internal storage $x is the location of the video , I do not want a new output file to be created, i just want the cropped video to overwrite the input video, so any changes on the video will be applied to the original video location.
i used this command but it did not work


FFmpegKit.execute("-i $x -ss 00:00:01 -t 00:00:10 -c copy $x")



any suggestions...
thanks in advance


-
Bat file to create a list of files and there paths in the same directory as the bat file
4 janvier 2020, par punktilendI want to create a bat file that creates a list of files and there paths (MyList.txt). Saves that file to the same directory the bat file is being run in.
This is what I am trying to accomplish with the MyList.txt. I would like to have the files in order as well.
file 'E:\Adobe\Projects\Work\191215 December\1\CONTENTS\CLIPS001\AA3023\AA302301.MXF'
file 'E:\Adobe\Projects\Work\191215 December\1\CONTENTS\CLIPS001\AA3023\AA302302.MXF'
file 'E:\Adobe\Projects\Work\191215 December\1\CONTENTS\CLIPS001\AA3023\AA302303.MXF'
file 'E:\Adobe\Projects\Work\191215 December\1\CONTENTS\CLIPS001\AA3023\AA302304.MXF'After this, I would like FFMPEG to concat those files
ffmpeg -f concat -safe 0 -i MyList.txt -c copy -map 0 Output.mxf
and output that to the same directory as well, but I think it will do that currently.This is what I have come up with so far :
@echo off
ECHO Creating MXF Concat List
dir /a /-p /o:gen > "%~dp1MXF_list.txt"
ffmpeg -f concat -safe 0 -i MXF_list.txt -c copy -map 0 Output.mxf -
How to recursively check for a file's existence according to its extension and convert it with ffmpeg if it exist, using .bat file
13 octobre 2018, par Hasan Yilmazi need to find files has .mxf extension in Drive D : and put a logo on it and convert it to .mp4 and search for for one with same extension and put logo and convert it to .mp4.
how can i make a .bat file for this.
thanksi did it. thanks.
here is the code.@echo off
for /R "C:\" %%f in (*.mxf) do (
echo %%~f
ffmpeg.exe -i "%%~f" -i E:\Logo\logo.png -filter_complex "[0:v][1:v] overlay=60:50" "%%~f.mp4"
)pause