Recherche avancée

Médias (91)

Autres articles (58)

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

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

Sur d’autres sites (6962)

  • ffmpeg to make black video with multiple audio and subtitles [closed]

    9 septembre 2024, par Tony M

    I want to use ffmpeg to make a video with only audio and subtitles in different languages. The video part can be a simple black background. I want to be able to switch between languages in video players like QuickTime.

    


    I've tried to get help from posts like this, but I couldn't figure out how to get it to work.

    


    To demonstrate that I've worked a long time on this, I'm showing what I've come up with below — but only steps (1) & (2) work. I can't get the subtitles step (3) to work.

    


    I've used ffmpeg for a long time, but never really understood it... I've only recently started to build my own commands, so the following probably looks awful to an expert :

    


      

    1. make a silent video using

      


      ffmpeg -loop 1 -i black.jpg -i silent.mp3 -acodec copy -shortest -vf scale=1000:136 silent.mov

      


    2. 


    


    where m.jpg is a 500x68 black image and m.mp3 has 5 min of silence

    


      

    1. add 3 language (italian, french, german) using

      


      ffmpeg -i silent.mov -i ita.mp3 -i fre.mp3 -i ger.mp3 -map 0:v -map 1:a -map 2:a -map 3:a -metadata:s:a:0 language=ita -metadata:s:a:1 language=fre -metadata:s:a:2 language=ger ita-fre-ger.mov

      


    2. 


    3. add subtitles using (doesn't work)

      


    4. 


    


    ffmpeg -i ita-fre-ger.mov -i ita.srt -i fre.srt -i ger.srt -map 0 -map 1 -map 2 -map 3 -c copy -c:s mov_text -metadata:s:s:0 language=ita -metadata:s:s:1 language=fre -metadata:s:s:2 language=ger final.mov

    


  • How to insert bullet screen comments into a video by using ffmpeg ?

    7 septembre 2019, par Saeron Meng

    I would like to add some real-time comments in my video but I do not know how to use ffmpeg to realize this. The comments are like screen bullets through the screen, scrolling from right to left.

    My thought is to count the length of the comments and define speeds for them to move. Don’t worry about the source of the comments, I have already gotten them saved as an xml file. Also, I can transfer it into srt. For instance :

    <chat timestamp="671.195">
       <ems utctime="1562584080" sender="Bill">
           <richtext></richtext>
       </ems>
    </chat>
    <chat timestamp="677.798">
       <ems utctime="1562584086" sender="Jack">
           <richtext></richtext>
       </ems>
    </chat>

    The final result is like this (I did not find an example displayed in English), these fancy characters can move horizontally :

    example

    I have searched some solutions on the Internet, most of which talk about how to write ass/srt files and add motionless subtitles. Like this :

    3
    00:00:39,770 --> 00:00:41,880
    When I was lying there in the VA hospital ...

    4
    00:00:42,550 --> 00:00:44,690
    ... with a big hole blown through the middle of my life,

    5
    00:00:45,590 --> 00:00:48,120
    ... I started having these dreams of flying.

    ffmpeg -i infile.mp4 -i infile.srt -c copy -c:s mov_text outfile.mp4

    But I need another kind of "subtitles" which can move.

    So my question is, how to modify the ffmpeg command and the template of srt file so as to arrange the subtitles from the top to the bottom and let them move from right to left ?

  • Can't upload folder with large amount of files to google storage. I using "@ffmpeg-installer/ffmpeg" and @google-cloud/storage

    20 juillet 2022, par Dmytro

    I upload file to google storage using "@ffmpeg-installer/ffmpeg" and @google-cloud/storage in my node.js App.&#xA;Step 1. file uploading to fs is in child processes - one process for each type of resolution (totaly six).&#xA;step 2. encription (converting to stream)&#xA;step 3. upload to google storage

    &#xA;

    I use "Upload a directory to a bucket" in order to send the video from the client to the Google Cloud Storage bucket.

    &#xA;

    This way is working fine only with small video.

    &#xA;

    for example when I upload video with duration one hour it split on chunk and totally I get more three thousands files. But the problem occurs when there are more than 1500 files

    &#xA;

    So actually i upload folder with large amount of files, but not all of this files are uploaded to cloud.

    &#xA;

    maybe someone had the similar problem and helps fix it.

    &#xA;

    &#xD;&#xA;
    &#xD;&#xA;
    const uploadFolder = async (bucketName, directoryPath, socketInstance) => {&#xA;    try {&#xA;      let dirCtr = 1;&#xA;      let itemCtr = 0;&#xA;      const fileList = [];&#xA;&#xA;      const onComplete = async () => {&#xA;        const folderName = nanoid(46);&#xA;&#xA;        await Promise.all(&#xA;          fileList.map(filePath => {&#xA;            const fileName = path.relative(directoryPath, filePath);&#xA;            const destination = `${ folderName }/${ fileName }`;&#xA;&#xA;            return storage&#xA;              .bucket(bucketName)&#xA;              .upload(filePath, { destination })&#xA;              .then(&#xA;                uploadResp => ({ fileName: destination, status: uploadResp[0] }),&#xA;                err => ({ fileName: destination, response: err })&#xA;              );&#xA;          })&#xA;        );&#xA;&#xA;        if (socketInstance) socketInstance.emit(&#x27;uploadProgress&#x27;, {&#xA;          message: `Added files to Google bucket`,&#xA;          last: false,&#xA;          part: false&#xA;        });&#xA;&#xA;        return folderName;&#xA;      };&#xA;&#xA;      const getFiles = async directory => {&#xA;        const items = await fs.readdir(directory);&#xA;        dirCtr--;&#xA;        itemCtr &#x2B;= items.length;&#xA;        for(const item of items) {&#xA;          const fullPath = path.join(directory, item);&#xA;          const stat = await fs.stat(fullPath);&#xA;          itemCtr--;&#xA;          if (stat.isFile()) {&#xA;            fileList.push(fullPath);&#xA;          } else if (stat.isDirectory()) {&#xA;            dirCtr&#x2B;&#x2B;;&#xA;            await getFiles(fullPath);&#xA;          }&#xA;        }&#xA;      }&#xA;&#xA;      await getFiles(directoryPath);&#xA;&#xA;      return onComplete();&#xA;    } catch (e) {&#xA;      log.error(e.message);&#xA;      throw new Error(&#x27;Can\&#x27;t store folder.&#x27;);&#xA;    }&#xA;  };

    &#xD;&#xA;

    &#xD;&#xA;

    &#xD;&#xA;&#xA;