Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (30)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (4587)

  • Movie making from lyrics with timestamps in python

    26 mai 2020, par carl

    I have lyrics from musixmatch with timestamps. I want to form video with the lyric lines in the video along with images in a file numbered from 1-n.

    



    As seen in this post, I thought ffmpeg would be something which can help me but there aren't much information that i can find.

    



    Also the answer given by @llogan, gives very vague idea of forming videos with "subtitle filter" in ffmpeg.

    



    It would be very helpful you can provide an example to explain your idea.(It can also help other coders at any time :) )

    



    Thanks in advance

    


  • Adding background music using fluent-ffmpeg

    17 mai 2020, par Dhawal Patel

    I've been trying to add background audio to another audio file. Here is what I tried :

    



          const audio_urls = ['/path/audio1.m4a', '/path/audio2.m4a'];
      const file_name = 'merged_file.m4a';
      ffmpeg()
      .input(audio_urls[0])
      .input(audio_urls[1])
      .on('end', async function (output) {
        console.log(output, 'files have been merged and saved.')
      })
      .saveToFile(file_name)



    



    For some reason the file generated only has the second audio file sound (i.e. audio2.m4a). Any help is appreciated.

    


  • Bot isn't playing music [closed]

    15 mai 2020, par DevTeddy

    My bot can join, but it isn't playing any music ! The code is written is Javascript, and I am using Discord.js , Node.js and FFmpeg. The prefix and token are in a seperate JSON file. There are no errors in the Console, though. Also, it says the "added song to queue" message twice, for some reason. I have already tried using VS Code's debugger and checked it for errors. Please help me !

    



    My code is at : https://github.com/Dev-Ted/ForestBot

    



    Thanks !