Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (92)

  • 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.

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (6170)

  • Revision 64982 : - @package SPIP\PortePlume suite aux diverses discussion - @pipeline pour ...

    19 août 2012, par marcimat@… — Log

    - @package SPIPPortePlume ? suite aux diverses discussion
    - @pipeline pour un passage dans un pipeline
    - @pipeline_appel pour un passage dans un pipeline

  • lavu/parseutils : add more resolutions

    4 octobre 2013, par Niv Sardi
    lavu/parseutils : add more resolutions
    

    See http://en.wikipedia.org/wiki/Graphics_display_resolution

    Signed-off-by : Niv Sardi <xaiki@evilgiggle.com>
    Signed-off-by : Stefano Sabatini <stefasab@gmail.com>

    • [DH] doc/utils.texi
    • [DH] libavutil/parseutils.c
    • [DH] libavutil/version.h
  • How to open webcam in opencv2.4.6.1 on ubuntu12.04 ?

    20 septembre 2013, par user2079542

    I am using opencv2.4.6.1 on Ubuntu 12.04 LTS. I am new to opencv and have been trying to understand the sample programs in the opencv docs. I am trying to work on a project which takes a picture from a USB webcam (Kinamax Night Vision Camera) and do some image processing on it. I came across a sample code that is shown below :

    #include "cv.h"
    #include "highgui.h"
    #include  
    // A Simple Camera Capture Framework
    int main()
    {
    CvCapture* capture = cvCaptureFromCAM( CV_CAP_ANY );
    if ( !capture ) {
    fprintf( stderr, "ERROR: capture is NULL \n" );
    getchar();
    return -1;
    }
    // Create a window in which the captured images will be presented
    cvNamedWindow( "mywindow", CV_WINDOW_AUTOSIZE );
    // Show the image captured from the camera in the window and repeat
    while ( 1 ) {
    // Get one frame
    IplImage* frame = cvQueryFrame( capture );
    if ( !frame ) {
      fprintf( stderr, "ERROR: frame is null...\n" );
      getchar();
      break;
    }
    cvShowImage( "mywindow", frame );
    // Do not release the frame!
    //If ESC key pressed, Key=0x10001B under OpenCV 0.9.7(linux version),
    //remove higher bits using AND operator
    if ( (cvWaitKey(10) &amp; 255) == 27 ) break;
    }
    // Release the capture device housekeeping
    cvReleaseCapture( &amp;capture );
    cvDestroyWindow( "mywindow" );
    return 0;
    }

    On compiling using :

    g++ trycam.c -o trycam `--cflags --libs opencv`

    It gives no errors.
    When I try to run it using : ./trycam Nothing shows up ! Literally Nothing.

    On searching google and some other posts in the stackoverflow community, I tried updating the libraries and install other dependencies like ffmpeg,GTK, Gstreamer,etc. I understand that the webcam I have connected via USB is not supported as per the list of webcams supported by linux opencv in the link here. Even my default webcam that is in my HP Pavilion dv6000 is not opening.

    Is there a way I could get around this ? Kindly help me out.