
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (6)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
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 (...) -
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) ; (...)
Sur d’autres sites (3064)
-
Revision 67cf81b1c0 : Remove Windows-style newlines using dos2unix Change-Id : I0a0f9c07e774450896abc9
16 octobre 2013, par Guillaume MartresChanged Paths :
Modify /vp9/common/mips/dspr2/vp9_convolve2_dspr2.c
Modify /vp9/common/mips/dspr2/vp9_convolve2_vert_dspr2.c
Remove Windows-style newlines using dos2unixChange-Id : I0a0f9c07e774450896abc9455728b97fd38ef00c
-
FFMPEG pipe input filenames from command line on windows
6 novembre 2019, par Andrew HarrisI am concatenating a bunch of files on a windows 10 box into a single file using "ffmpeg -f concat -safe 0 -i list.txt -c copy output.mp4". This works fine when I generate list.txt in the required format.
What I am wanting is to not have to generate the file first and instead pipe the filenames in as the examples here show for *nix.
I have tried as follows "ffmpeg -f concat safe 0 -i <(for %i in (*.ts) do @echo file ’%i’) -c copy output.mp4" but I get "The system cannot find the file specified.".
Any idea’s how to make this work ?
-
Windows CMD Batch Script FFmpeg
1er mars 2021, par TobiasI have created a batch file (.bat) that uses FFmpeg to transcode various videos (with *.mov or *.mp4 file name extension) from an input folder to an output folder (with extension *.mkv) as batch process (Windows 10 environment).
File names (without extension) from the input folder should be copied to the newly created output file names (that have the new file extension *.mkv).


@echo off

set CMD=ffmpeg -c:v ffv1 -level 3 -g 1 -coder 1 -context 1 -pix_fmt + -slices 24 -slicecrc 1 -report -c:a pcm_s24le

FOR /R input_folder %%G IN (*.mov,*.mp4) DO (
 echo %%G
 call set outputfile=%%~nG%.mkv
 call set inputfile=%%~nG%%~xG
 echo %CMD% -y output_folder/%outputfile% -i %inputfile%
)



But this script does not work as expected, i.e. nothing happens.
Do you perhaps have an idea how to fix this ?
Thanks in advance !