
Recherche avancée
Autres articles (72)
-
XMP PHP
13 mai 2011, parDixit 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 (...) -
ANNEXE : Les extensions, plugins SPIP des canaux
11 février 2010, parUn plugin est un ajout fonctionnel au noyau principal de SPIP. MediaSPIP consiste en un choix délibéré de plugins existant ou pas auparavant dans la communauté SPIP, qui ont pour certains nécessité soit leur création de A à Z, soit des ajouts de fonctionnalités.
Les extensions que MediaSPIP nécessite pour fonctionner
Depuis la version 2.1.0, SPIP permet d’ajouter des plugins dans le répertoire extensions/.
Les "extensions" ne sont ni plus ni moins que des plugins dont la particularité est qu’ils se (...) -
L’agrémenter visuellement
10 avril 2011MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.
Sur d’autres sites (6454)
-
"An attempt was made to load a program with an incorrect format"
31 janvier 2014, par user2922938I work in visual studio 2008, when run the program this error is shown :
$exception "Could not load file or assembly 'AForge.Video.FFMPEG,
Version=2.2.5.0, Culture=neutral, PublicKeyToken=03563089b1be05dd' or one of its dependencies. An attempt was made to load a program with an incorrect format."using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using AForge.Video.FFMPEG;
namespace WindowsFormsApplication9
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
VideoFileReader video = new VideoFileReader();
}
}
}What is wrong with my program ?
-
I'm trying to dynamically call to a folder based on path of my program
29 juin 2020, par Jessie WilsonI have been working on this for a couple days and I feel like I'm going about it wrong.


Say my .py program is is Desktop/TEST.
The executable I want to run is in Desktop/TEST/ExampleProgram
I want to be able to call example.exe and send CLI commands to it out of the above folder.


I can do this easily if I hardcode the paths into the program. I need to know how to dynamically change this path depending on where the my program is unpacked. (I'll be using pyinstaller to turn the main .py into a .exe)


I have tried doing this with ("%s" % path.abspath(path.curdir)) paired with the subprocess module. However, I feel like this is wrong. Any help would be apprecaited !


-
How to pass VP8 encoder option programmatically in ffmpeg based program
28 juin 2016, par ivan.ukrI am building a program using ffmpeg libraries based on the standard ffmpeg transcoder example. My aim is to build video transcoder which encodes any suitable video (i.e. which ffmpeg can read) into WEBM format. The question is how do I pass options to VP8 encoder to control output video quality and other parameters ? I mean passing these option via C++ code.