Advanced search

Medias (1)

Tag: - Tags -/artwork

Other articles (25)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 September 2013, by

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo; l’ajout d’une bannière l’ajout d’une image de fond;

  • Publier sur MédiaSpip

    13 June 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

  • Support de tous types de médias

    10 April 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...); audio (MP3, Ogg, Wav et autres...); vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...); contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google (...)

On other websites (4558)

  • Merge commit ’58c3720a3cc71142b5d48d8ccdc9213f9a66cd33’

    18 August 2015, by 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 April 2022, by 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;

  • create extended context menu for ffmpeg

    29 May 2020, by Rami Magdi

    this should be the completed version that i'm unable to achieve

    &#xA;&#xA;

    enter image description here

    &#xA;&#xA;

    this is what i achieved

    &#xA;&#xA;

    enter image description here

    &#xA;&#xA;

    this is my convertingto.reg code

    &#xA;&#xA;

    Windows Registry Editor Version 5.00&#xA;&#xA;    ;command in context menu&#xA;[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\*\shell\converting to]&#xA;&#xA;"MUIVerb"="converting to"&#xA;"SubCommands"="rotate1;rotate2;rotate0;rotate3"&#xA;&#xA;"SeparatorBefore"=""&#xA;"SeparatorAfter"=""&#xA;&#xA;    ;rotate 90 clockwise&#xA;[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\rotate1]&#xA;@="rotate 90 clockwise"&#xA;[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\rotate1\command]&#xA;@="\"C:\\ffmpeg\\rotate1.bat\"\"%1\""&#xA;&#xA;&#xA;    ;rotate 90 counterclockwise&#xA;[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\rotate2]&#xA;@="rotate 90 counterclockwise"&#xA;[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\rotate2\command]&#xA;@="\"C:\\ffmpeg\\rotate2.bat\"\"%1\""&#xA;&#xA;&#xA;    ;rotate 90 counterclockwise &amp; vertically flip&#xA;[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\rotate0]&#xA;@="90 counterclockwise &amp; vertically flip"&#xA;[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\rotate0\command]&#xA;@="\"C:\\ffmpeg\\rotate0.bat\"\"%1\""&#xA;&#xA;&#xA;    ;rotate 90 clockwise &amp; vertically flip&#xA;[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\rotate3]&#xA;@="rotate 90 clockwise &amp; vertically flip"&#xA;[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\CommandStore\shell\rotate3\command]&#xA;@="\"C:\\ffmpeg\\rotate3.bat\"\"%1\""&#xA;

    &#xA;&#xA;

    i understand this can be done using extendedsubcommandskey unfortunately i can't reproduce microsoft's notes https://docs.microsoft.com/en-us/windows/win32/shell/how-to-create-cascading-menus-with-the-extendedsubcommandskey-registry-entry

    &#xA;