Recherche avancée

Médias (91)

Autres articles (83)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (11435)

  • FFmpeg does not get run on Windows 7 32-bit

    13 octobre 2016, par Simer

    I installed ffmpeg on Windows 7 32 bit and I got the following error when I tried executing ffmpeg.exe. Therefore it is not installed and neither shows up in my localhost :

    the procedure entry point could not be located in the dynamic link
    library kernel32.dll

    Whereas it gets installed on 64 bit easily.

    I downloaded ffmpeg from Zeranoe. I have tried with static and shared builds.

  • ffmpeg does not get installed on windows 32 bit

    13 octobre 2016, par Simer

    I have installed ffmpeg on windows 32 bit and I got following error when I try executing ffmpeg.exe therefore it is not installed and neither shows up in my localhost :

    the procedure entry point could not be located in the dynamic link
    library kernel32.dll

    Where as it get installed on 64 bit easily.
    I am downloading ffmpeg from -zeranoe. I have tried with static and shared builds.

  • OpenCV VideoCapture not read any video File in Windows 7 32bit

    3 octobre 2014, par The_Maxtor

    i try to read .avi or .mpeg video file using VideoCapture class of OpenCV2.4.8 in C++ using QtCreator and CMake 2.8.12.1.
    Before built OpenCV, i download FFMPEG static version and put them into Program Files directory, i add their path into enviroments variable PATH, then i download K Lite Codec Pack Full, install it and only then i built OpenCV with CMAKE and mingw provide by Qt. After installation i add to PATH the right path of built OpenCV.
    The stream from webcam works fine, but the stream from a video file doesn’t work. I tried on Windows 7 32bit and Windows 8 64bit.
    Here is the code

    #include <opencv2></opencv2>imgproc/imgproc.hpp>
    #include <opencv2></opencv2>highgui/highgui.hpp>
    #include <opencv2></opencv2>core/core.hpp>
    #include "opencv2/opencv.hpp"
    cv::Mat img;
    cv::VideoCapture cap("Prova.avi");
    std::cerr &lt;&lt; cap.isOpened() &lt;&lt; std::endl;
    while(cap.read(img)){
       cv::imshow("Opencv", img);
       cv::waitKey(33);
    }

    The same code works on Ubuntu 12.04 with the same version of OpenCV and with the ffmpeg build by myself.
    What is wrong ?