Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (100)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (8149)

  • A ffmpeg command method into a webjob

    2 juillet 2017, par Fearhunter

    I am new with Azure Webjobs. I made an ffmpeg function to slice a stream into separate mp4 files :

    public Process SliceStream()
    {
       var url = model_s.Url;
       var cuttime = model_s.Cuttime;
       var output = model_s.OutputPath;
       return Process.Start(new ProcessStartInfo
       {
           FileName = "ffmpeg.exe",
           Arguments = $"-i \"{url}\" -c copy -flags +global_header -f segment -segment_time \"{cuttime}\" -segment_format_options movflags=+faststart -reset_timestamps 1 \"{output}\"",
           UseShellExecute = false,
           RedirectStandardOutput = true
       });
    }

    The var properties are the variables for the user input on the front-end. I want to scheduled this method into a webjob. How can I achieve this ? I saw an article on google

    https://zimmergren.net/getting-started-with-building-azure-webjobs-timer-jobs-for-your-office-365-sites/

    Need I just follow these steps to achieve my goal ? Or must I add some C# code to achieve this ?

  • Merge commit ’58c3720a3cc71142b5d48d8ccdc9213f9a66cd33’

    18 août 2015, par Hendrik Leppkes
    Merge commit ’58c3720a3cc71142b5d48d8ccdc9213f9a66cd33’
    

    * commit ’58c3720a3cc71142b5d48d8ccdc9213f9a66cd33’ :
    fate : Make sure a corner-case for ASF is covered

    Adjusted fate ref to match the different timebase of the ffasf demuxer

    Merged-by : Hendrik Leppkes <h.leppkes@gmail.com>

    • [DH] tests/fate/microsoft.mak
    • [DH] tests/ref/fate/asf-repldata
  • How to use ffmpeg in uwp ?

    22 avril 2022, par MrL

    I developed a software with electron. It needs ffmpeg, but when I package it into appx, I won't be able to use ffmpeg.

    &#xA;

    let FFmpegPath = path.resolve(AppPath, "FFmpeg");&#xA;let FFMPEGPATH = path.resolve(FFmpegPath, "ffmpeg");&#xA;let FFPROBEPATH = path.resolve(FFmpegPath, "ffprobe");&#xA;let FFoption_V = &#x27;"&#x27;&#x2B;FFPROBEPATH&#x2B;&#x27;"&#x27; &#x2B; " -i " &#x2B;&#x27;"&#x27;&#x2B; path.normalize(PATH)&#x2B;&#x27;"&#x27; &#x2B; " -show_streams -select_streams v -of json";&#xA;EXEC_V = C_PRO.execSync(FFoption_V);&#xA;

    &#xA;

    This is the information I found, but it doesn't seem to work for electron :https://docs.microsoft.com/en-us/windows/apps/desktop/modernize/desktop-to-uwp-extensions

    &#xA;

    <package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10">&#xA;  ...&#xA;  <capabilities>&#xA;      &#xA;  </capabilities>&#xA;  <applications>&#xA;    <application>&#xA;      <extensions>&#xA;          &#xA;              &#xA;                  &#xA;                  &#xA;              &#xA;           &#xA;      </extensions>&#xA;    </application>&#xA;  </applications>&#xA;</package>&#xA;

    &#xA;