Recherche avancée

Médias (91)

Autres articles (34)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

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

  • Revision c154826961 : Removed space in ETA printout This is to fix issue#709 Change-Id : I537f1fb7425

    4 avril 2014, par Yaowu Xu

    Changed Paths :
     Modify /vpxenc.c



    Removed space in ETA printout

    This is to fix issue#709

    Change-Id : I537f1fb74252fef8a58e68b0960a36a9aada856e

  • Mix the each audio track space with specific audio ?

    23 avril 2014, par Dhaval

    I have audio files and it contain some space.

    I want to fill thse space with specific word audio.

    Is it possible with FFMPEG ?

    Please share me command, how to fill each space (contain in audio track) with another audio ?

    Thanks
    Dhaval

  • Java ProcessBuilder : space within quotation marks

    29 mai 2014, par Zahlii

    I am using ProcessBuilder to run FFMPEG to convert and label some of my MP3-Files.

    Manually using the following in a .bat file works as expected :

    "E:\Dokumente\workspace\MusicBot\ffmpeg\bin\ffmpeg.exe"
       -i "The Glitch Mob - We Can Make The World Stop.mp4"
       -metadata author="The Glitch Mob"
       -metadata title="We Can Make The World Stop"
       -ab 320k "mob.mp3"

    Now what i am trying to achieve using java’s ProcessBuilder

    ProcessBuilder pr = new ProcessBuilder(FFMPEG_PATH,
       "-i", target.getAbsolutePath(),
       "-metadata", "title=\"We Can Make The World Stop\"",
       "-metadata", "author=\"The Glitch Mob\"",
       "-ab", "320k",
       tar.getAbsolutePath());

    results in a [NULL @ 000000000032f680] Unable to find a suitable output format for 'Can'.
    Using title and author without spaces in them works, however.