
Recherche avancée
Médias (1)
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (48)
-
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...) -
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 (...) -
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 (9790)
-
Removing file in windows batch script not working
13 février 2020, par BluePrintI’m trying to create a batch script for trimming 25 seconds from the beginning of all mp4 files in a folder. The batch script is located in the same folder as the files, and there is a folder called
trimmed
in the same folder. This is my script so far :@echo off
setlocal DisableDelayedExpansion
:promptdel
set /p delorig=Delete original file (default no)? [Y/N]:
if not defined delorig (
set delorig=N
)
set "vartwo="&for /f "delims=YNyn" %%i in ("%delorig%") do set vartwo=%%i
if defined vartwo (
echo Please state Y or N!
goto :promptdel
)
for %%a in ("*.mp4") do (
echo Starting %%a
rem "Need to rename since file names may contain whitespaces"
ren "%%a" "working.mp4"
ffmpeg -loglevel panic -hide_banner -i "working.mp4" -ss 00:00:25.000 -c:v copy -c:a copy "trimmed\%%a"
ren "working.mp4" "%%a"
echo %delorig%
if %delorig% == "Y" (del "%%a" /f /q)
if %delorig% == "y" (del "%%a" /f /q)
echo %%a finished!
)
pauseMy problem is that the original file does not get removed regardless of if I input y/Y or n/N. What am I doing wrong ?
-
Script to make movie from images
6 décembre 2014, par Alex TheWebGroupHello I want a script or a way to make a video from images. I have a folder with a lot of pictures named randomly like "flowers.jpg", "tree.jpg", etc.
I also have an "intro.jpg" photo which I want to add at the start of every video.
What I want exactly is to create a video (any format, .avi etc) for a custom duration with only two photos like this :
intro.jpg (10-20 seconds or how much i want) + tree.jpg (1 hour or how much i want)
intro.jpg + flowers.jpg
...
and so on.Sorry for being a newbie, but I have no clue how to accomplish this.
-
How to merge multiple audio+video in FFMPEG with script ? [closed]
17 décembre 2023, par kormorforPlease help me with this if you can :
I have multiple files what cause me a headache .
All these video files have it's own a similar named audio, what I would like to merge.
For example.
01.mkv has 01.m4a ; 02.mkv has 02.m4a ; 03.mkv has 03.m4a...


My goal is to make my this easier thank one by one rather a script what recognize all needed files in folder for merge and does it.


I used this manually but it is not a good solution :
ffmpeg -i 01.mkv -i 01.m4a -map 0 -map 1 -c copy output1.mkv
ffmpeg -i 02.mkv -i 02.m4a -map 0 -map 1 -c copy output2.mkv
ffmpeg -i 03.mkv -i 03.m4a -map 0 -map 1 -c copy output3.mkv


I searched and looked everywhere.
I have found a good looking script but I can't make it work.
Please can you help me with this ?
 :
for %i in (*.mkv) do ffmpeg -i "%i" -i -map 0 -map 1 -c copy "% ni.mkv"