Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (108)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    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 (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (9493)

  • ass : fix error handling in ff_ass_add_subrect

    23 octobre 2013, par Marton Balint
    ass : fix error handling in ff_ass_add_subrect
    

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavcodec/ass.c
  • libzvbi-teletextdec : dont ignore memory allocation error silently

    25 octobre 2013, par Marton Balint
    libzvbi-teletextdec : dont ignore memory allocation error silently
    

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavcodec/libzvbi-teletextdec.c
  • OpenCV - CvVideoWriter codec error in raspbian

    10 novembre 2013, par user2975978

    I'm making something like black box in raspberry pi.

    I set OpenCV 2.4.3 and many video libraries.
    ( I referred this site - Opencv cannot acces my webcam )

    And I compiled this sample code.

    #include
    #include "opencv/cv.h"
    #include "opencv/highgui.h"
    #include "opencv/cxcore.h"

    int main(void){
       CvCapture* capture = cvCaptureFromCAM(0);
       cvNameWindow("video", 1);

       double fps = cvGetCaptureProperty(capture, CV_CAP_PROP_FPS);
       CvSize frame_size = cvSize((int)cvGetCaptureProperty(capture, CV_CAP_PROP_FRAME_WIDTH), (int)cvGetCaptureProperty(capture, CV_CAP_PROP_FRAME_HEIGHT));
       CvVideoWriter* writer = cvCreateVideoWriter("out.avi", -1, fps, frame_size, 1);

       IpImage* frame;
       while(1){
           frame = cvQueryFrame(capture);
           cvShowImage("video", frame);
           if(cvWaitKey(38) == 27){
               break;
           }
       }

       cvReleaseVideoWriter(&amp;writer);
       cvReleaseCapture(&amp;capture);
       cvDestroyWindow("video");

       return 0;
    }

    This code compiled successfully.

    But when i run this process, there are some error.

    OpenCV Error: Unsupported format or combination of formats (Gstreamer Opencv backend doesn&#39;t support this codec acutally.) in CvVideoWriter_GStreamer::open, file /home/pi/OpenCV-2.4.3/modules/highgui/src/cap_gstreamer.cpp, line 479
    terminate called after throwing an instance of &#39;cv::Exception&#39;
    what(): /home/pi/OpenCV-2.4.3/modules/highgui/src/cap_gstreamer.cpp:479: error: (-210) Gstreamer Opencv backend doesn&#39;t support this codec acutally. in function CvVideoWriter_GStreamer::open

    Aborted

    So, i changed codec part in 'cvCreateVideoWriter' instead of -1.
    I tried many types of codec like 'CV_FOURCC('M','J','P','G')' and so on..

    but I cannot fix this problem.

    How can i solve this problem ? Please help me..