Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (61)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (11012)

  • "Could not demultiplex stream" in loading Video recorded by Opencv's VideoWriter

    16 juin 2016, par batuman

    My program is

    int main(){
       cout << "Start the process" << endl;
       cv::VideoCapture vcap("rtsp://root:pass@192.168.0.90/axis-media/media.amp?camera=1");
       cout << "Camera connection done!" << endl;
       cv::Mat image, small;
       //Output video
       cv::Size S = cv::Size((int) vcap.get(CV_CAP_PROP_FRAME_WIDTH), (int) vcap.get(CV_CAP_PROP_FRAME_HEIGHT));
       int ex = static_cast<int>(vcap.get(CV_CAP_PROP_FOURCC));
       int fps = vcap.get(CV_CAP_PROP_FPS);
       cout &lt;&lt; "fps " &lt;&lt; fps &lt;&lt; " ex " &lt;&lt; ex &lt;&lt; endl;
       cv::VideoWriter outputVideo;
       outputVideo.open("TEST.avi", ex/*CV_FOURCC('X', '2', '6', '4')*/, vcap.get(CV_CAP_PROP_FPS), S, true);
       if(!outputVideo.isOpened()){
           cout &lt;&lt; "Could not open the output video for write" &lt;&lt; endl;
           return -1;
       }

       for(;;){
           if(!vcap.read(image)){
               std::cout &lt;&lt; "No frame" &lt;&lt; std::endl;
               cv::waitKey(0);
           }

           cv::resize(image, small, image.size()/2, 0, 0 , cv::INTER_LINEAR);
           cv::imshow("Display", small);
           cv::waitKey(1);
           outputVideo.write(small);
           if(getkey() == '\n')
               break;
       }
       cout &lt;&lt; "Camera release" &lt;&lt; endl;
       outputVideo.release();
       vcap.release();
       image.release();
       small.release();
       return 0;
    }
    </int>

    int ex = static_cast<int>(vcap.get(CV_CAP_PROP_FOURCC));</int> ex is 0 here.

    I can record the TEST.avi, but can’t be read by cv::VideoCapture vcap("TEST.avi") ; or VLC player or Videos in Ubuntu.
    The error is "Could not demultiplex stream".

    If I changed to

    outputVideo.open("TEST.avi", CV_FOURCC('X', '2', '6', '4'), vcap.get(CV_CAP_PROP_FPS), S, true);
    outputVideo.open("TEST.avi", CV_FOURCC('P','I','M','1'), vcap.get(CV_CAP_PROP_FPS), S, true);
    outputVideo.open("TEST.avi", CV_FOURCC('M', 'P', '4', '2'), vcap.get(CV_CAP_PROP_FPS), S, true);
    etc.

    all have same problem.

    If I set

    outputVideo.open("TEST.avi", CV_FOURCC('i', 'Y', 'U', 'V'), vcap.get(CV_CAP_PROP_FPS), S, true);

    I have error as Opencv: FFMPEG iYUV is not supported with codec id 14

    For

    outputVideo.open("TEST.avi", CV_FOURCC('M', 'J', 'P', 'G'), vcap.get(CV_CAP_PROP_FPS), S, true);


    OpenCV Error: Assertion failed (img.cols == width &amp;&amp; img.rows == height &amp;&amp; chann
    els == 3) in write, file /home/Softwares/opencv/opencv/modules/videoio/src/
    cap_mjpeg_encoder.cpp, line 829
    terminate called after throwing an instance of 'cv::Exception'
     what():  /home/Softwares/opencv/opencv/modules/videoio/src/cap_mjpeg_enco
    der.cpp:829: error: (-215) img.cols == width &amp;&amp; img.rows == height &amp;&amp; channels =
    = 3 in function write

    What could be wrong ? Is that my FFMPEG has problem ?

  • what is the subtitute for avio_set_interrupt_cb ?

    15 janvier 2013, par jAckOdE

    Is the avio_set_interrupt_cb deprecated in the new ffmpeg release ?
    What is the substitute ?

  • Revision 70728 : Un chouilla de phpdoc et éviter une notice si ...

    14 mars 2013, par kent1@… — Log

    Un chouilla de phpdoc et éviter une notice si $argscontexte ?modele ? n’est pas défini