Recherche avancée

Médias (0)

Mot : - Tags -/page unique

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (75)

  • 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 (...)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (6072)

  • PHP Script for FFMPEG conversion

    29 mai 2013, par user910930

    Not been programming for long, so go easy.

    Basically I'm attempting to write a PHP script that'll be able to automatically convert a folder full of .mp4's for me, and make them .flv's. This will be done for my entire TV collection (which is quite large) to allow for streaming over my local network within browsers.

    I've currently got the following code :

    // Save video files into an array
    $vid = glob("../../*.mp4");
    // Open text file in write mode
    $fp=fopen("test.txt","w+");
    // Write contents of array to file
    foreach($vid as $key => $value){
    fwrite($fp,$value."\n");
    }

    This is taking all of the mp4 files within the folder, and saving their filenames into a text file. The next step I need to take is to read each line, one by one, and perform an FFMPEG command on them until each line has been completed.

    Any idea how I can achieve this ? I know I'll have to use shell_exec somehow, but I've never used this before, and I'm a little bit stuck as to what to do next.

    Thanks for any help

  • can any one give a script in linux if we copy the video it should be automatically encoded [closed]

    27 mai 2013, par user2423743

    can any one give a script that in a folder if we copy the video file it should be encoded with ffmpeg automatically and it should be moved destination folder renamed with name and date.Help please it's urgent.sorry for english

  • ffmpeg batch script that combines multiple audio clips with one image > mp4

    2 mars 2016, par Jamie

    I found this script in another thread and edited it to make this :

    @echo off
    for %%F in (*.jpg) do (
      if exist "%%~nF.mp3" (
         ffmpeg -loop 1 -i "%%~nF.jpg" -i "%%~nF.mp3" -acodec libvo_aacenc -vcodec mpeg4 -shortest "%%~nF.mp4"
      )
    )

    It combines all mp3 files with all jpeg files that share the same filename into a mp4 video with the static image running.

    But the problem is - if I want to convert more than one mp3 file using the same image (let’s say three mp3s), I have to duplicate the same jpeg image three times !

    For example, if I have three Michael Jackson mp3 files :

    MJ1.mp3
    MJ2.mp3
    MJ3.mp3

    I would need to create :

    MJ1.jpg
    MJ2.jpg
    MJ3.jpg

    But really I only need one image for all three mp3s.

    What edits do I need to make to the script combine all mp3s with one jpeg file ? Let’s say I wanted every mp3 file in the folder to convert with default.jpg. How would I do this ?