Recherche avancée

Médias (5)

Mot : - Tags -/open film making

Autres articles (57)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans 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, par

    Afin 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, par

    To 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 (8059)

  • Documentation #2984 (En cours) : Surcharge de spip_fr.php dans "squelettes/lang"

    24 avril 2013, par bu bu

    En plaçant un fichier de type spip.php_ dans "squelettes/lang" pour surcharger certaines chaînes, la liste des langues disponibles dans l’interface privée est modifiée. Il ne reste plus que les langues dont le fichier de surcharge est présent dans "squelettes/lang".

    Exemple :
    Quand je met spip_fr.php et spip_en.php avec les surcharges voulues dans "squelettes/lang", je n’ai plus que anglais et français en choix de traduction dans le choix des langues de l’interface privée.

  • FFMPEG .bat script not running

    22 août 2018, par MrGreen

    I’ve got a folder full of .avi video files. I want to change the container of each of those to .mp4 using a .bat script.
    This is the code :

    for i in "*.avi" do ffmpeg -i "$i" -c copy "outputs/${i%.avi}.mp4"; done

    But when i run the .bat cmd pops up for a split second and closes immediately. The folder for the output is there as well as the ffmpeg.exe.
    Whats wrong ?

  • sending FFMPEG the start_number of image sequence in a batch script

    31 janvier 2023, par getho

    I'm creating a batch script to daily convert screen captures to video
Its all working except I cant get the screen caps to start at 0001 each day,so my current script fails.

    


    Is there a way within FFMPEG to just read all the files in a folder (e.g. if I have one folder with 500 files starting with 01234.jpg and another folder with files starting at 87654.jpg) ?

    


    If not, can I use the batch script to find the start and finish points and send that to ffmpeg ?

    


    my script

    


    @echo off
setlocal enabledelayedexpansion

rem Check if a new folder has been added to the watched folder
for /f "tokens=*" %%a in ('dir "Y:\fastone_timelapse" /B /AD') do (
   set "new_folder=%%a"

   rem Check if jpeg files are present in the new folder
   if exist "Y:\ft\!new_folder!\*.jpg" (
         
ffmpeg.exe -f image2 -framerate 25 -pattern_type sequence -start_number 00001 -i "Y:\ft\!new_folder!\%%05d.jpg" -c:v libx265 -b:v 5000k -g 100 "Y:\ft\!new_folder!.mp4"


   )
)
endlocal