
Recherche avancée
Autres articles (64)
-
Le profil des utilisateurs
12 avril 2011, parChaque 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, parAccé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, 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 (...)
Sur d’autres sites (4252)
-
can't play video using cv2 python in windows
14 juin 2013, par rlvamsiI am new to opencv and I am using it with python. I am trying to play a video and detect all the faces in it, but I am stuck here : I can't play the video itself.
I tried with CaptureFromFile method but its not playing. I tried with to print the properties of video file like fps,frames and everything but its giving zero.
I searched a lot on the internet but everyone is giving the method itself. I tried many formats but every time it's the same, not running but from cam I can play it.
Should I change the format of file using ffmpeg or what should i do to play a video file cv2 . By the way I am using windows 7.
-
Start using ffmpeg Android with NDK - Windows
26 septembre 2012, par idishI'm new to ffmpeg and I'm trying to compile it/use it's libraries in my Android App with Android NDK. I have everything ready : the NDK, the ffmpeg source, but I've been searching the web for long time trying to compile some ffmpeg into my app.
I found this answer, but I don't really understand the instructions, I repeat, I'm using Windows, not a Linux based operating system. Is it that hard to make ffmpeg work in my android app ? Could anyone please give me instructions to get it work ?Thank you.
-
ffmpeg pipe out to stdout on windows
26 mars 2024, par JaSHinHello I need to pipe output from ffmpeg to another program. It's works on my macOs with command :


ffmpeg -i C0333.MP4 -start_number 0 -f rawvideo -pix_fmt rgb48le pipe: | rgb2dng -i - -n 0 -o 'export/test-####.dng'



I have ported rgb2dng from Unix systems to Windows. But same command doesn't work. rgb2dng used stdin to read pipe :


if (strcmp(ifn,"-")==0) {
 ifo = stdin;
 } else {
 ifo = fopen(ifn, "rb");
 }