Recherche avancée

Médias (0)

Mot : - Tags -/serveur

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

Autres articles (38)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

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

Sur d’autres sites (3859)

  • Windows Batch-File to execute n other batch-files in parallel

    11 décembre 2015, par Jos

    I use ffmpeg to convert video files. The codec I’m encoding with is single-threaded. There are a lot of video files to convert, so instead of using multithreaded encoding I can simply encode multiple video files with 1 thread each.

    To automate the encoding I use the follow commands in a .bat :

    SET maindir=%~dp0
    FOR /r /d %%f in (*) do pushd "%%f" & Call %maindir%convert-with-ffmpeg.bat & popd

    This calls "convert-with-ffmpeg.bat" sequentially`to convert each file/folder in the main dir.

    What would my .bat file have to look like if I want to do this in parallel (say, 12 times) until there are no more folders left to process ?

    EDIT : Let me be clear that I want to LIMIT the amount of running processes at 12. When a .bat is done, I want the main .bat to start a new process until all files are converted (100+).

  • How to mix / overlay more than two mp3 audio files into one mp3 file (not concatenate) using ffmpeg for android

    31 mai 2019, par Ivan Rancic

    I have a sample code for two mp3 audio files, but I want to merge(overlap) dynamically (without concatenate) more than two files ( for example 5,6,7,.... audio files into one ) via ffmpeg library.

    String s = "-i " + path1 + " -i " + path2
       + " -filter_complex amerge -ac 2 -c:a libmp3lame -q:a 4 "
       + outputPath;
  • How to combine two .mka recording files to one stereo(dual channel) .wav file using FFMPEG

    21 mai 2019, par anoop v m

    I have two .mka recording files both have Date Time Original and Channel Layout : stereo in their metadata. I need to mix this two stereo type files to a single stereo file of type .wav. The timing should be preserved when overlaying. I am tired of getting this by using FFMPEG library. The resulting output is not stereo type and sometimes it is getting mixed up without considering the time of start. Please Help.
    Any help will be appreciated.