Recherche avancée

Médias (0)

Mot : - Tags -/masques

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

Autres articles (111)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (11513)

  • 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;

  • create extended context menu for ffmpeg

    29 mai 2020, par 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;