Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (111)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

Sur d’autres sites (9768)

  • Opencv cv2.VideoCapture('file.avi') shows first frame then throws exception

    3 novembre 2014, par holografix

    I’m trying to read a .avi included in the OpenCV original package, it’s called 768x576.avi and shows a few people walking around a street.

    The code below shows what seems to be the 1st frame and runs for a few seconds before returning an Exception.

    import cv2
    cap = cv2.VideoCapture('768x576.avi')
    cap.isOpened() # returns True
    cap.get(3); cap.get(4) # returns 768 and 576

    while (True):
       ret, frame = cap.read()
       cv2.imshow('frame', frame)

    Hands me this error after a few secs on the cv2.imshow line, I think it means the returned frame had no data associated it in.

    error: /tmp/opencv-7y6HHt/opencv-2.4.9/modules/highgui/src/window.cpp:261: error: (-215) size.width>0 && size.height>0 in function imshow

    I have no idea why this is happening, I’m running Yosemite, brew installed Python, OpenCv and Ffmpeg.

    opencv: stable 2.4.9, HEAD
    http://opencv.org/
    /usr/local/Cellar/opencv/2.4.9 (219 files, 38M) *

    ffmpeg: stable 2.4.2 (bottled), HEAD
    https://ffmpeg.org/
    /usr/local/Cellar/ffmpeg/2.4.2 (199 files, 40M) *
     Poured from bottle
    From: https://github.com/Homebrew/homebrew/blob/master/Library/Formula/ffmpeg.rb
    ==> Dependencies
    Build: pkg-config ✔, texi2html ✘, yasm ✘
    Recommended: x264 ✔, faac ✔, lame ✔, xvid ✔
  • Unable to connect to UDP through opencv [closed]

    16 février 2020, par Heyyaya

    Currently on my windows laptop, I have setup a project which uses OpenCV to get live feed (udp) off my drone using the cv2.VideoCapture("udp ://@") command. It works very well, yet when I try running my code on the pi, it doesn’t recognize the video capture and returns errors including, unable to resize null object. Is there something I need installed inorder to get this working ?

    Thanks

  • Command to get information about a mp3 using ffmpeg ?

    19 septembre 2011, par LedZeppelin

    Is there a command with ffmpeg that returns information about an mp3 like the bitrate or sampling frequency ?