Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (6)

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

  • Les thèmes de MediaSpip

    4 juin 2013

    3 thèmes sont proposés à l’origine par MédiaSPIP. L’utilisateur MédiaSPIP peut rajouter des thèmes selon ses besoins.
    Thèmes MediaSPIP
    3 thèmes ont été développés au départ pour MediaSPIP : * SPIPeo : thème par défaut de MédiaSPIP. Il met en avant la présentation du site et les documents média les plus récents ( le type de tri peut être modifié - titre, popularité, date) . * Arscenic : il s’agit du thème utilisé sur le site officiel du projet, constitué notamment d’un bandeau rouge en début de page. La structure (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (3203)

  • Revision c040f96e4b : mips msa vp9 subtract block optimization average improvement 3x-4x Change-Id :

    26 juin 2015, par Parag Salasakar

    Changed Paths :
     Modify /vp9/common/vp9_rtcd_defs.pl


     Add /vp9/encoder/mips/msa/vp9_subtract_msa.c


     Modify /vp9/vp9cx.mk



    mips msa vp9 subtract block optimization

    average improvement 3x-4x

    Change-Id : Idbe4d13a00d05ff8be6559b116f416e42c3b4097

  • warning : Could not find codec parameters

    22 juin 2015, par kylel95
    import numpy as np
    import cv2

    cap = cv2.VideoCapture('camera10.h264') #Captures h264 file from folder
    while(cap.isOpened()):``
       ret, frame = cap.read()

       gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)

       cv2.imshow('frame', gray)
       if cv2.waitKey(20) & 0xFF == ord('q'):
           break

    cap.release()
    cv2.destroyAllWindows()

    Once I run this code I get : warning :

    Could not find codec parameters (../../modules/highgui/src/cap_ffmpeg_impl.hpp:556).

    Does anyone know what the problem is please ?

  • Qt C++ ffmpeg cannot find library

    7 juin 2013, par Carnifrex

    I use Qt 5.0.2 with Mingw 4.7 on windows.

    I'm working on a c++ program and i'm trying to get the duration of video files. I found ffmpeg. Now i tried to compile a simple program but I think it fails with the libraries. I've tried to include both the shared and dev but they both will fail. ( Zeranoe FFmpeg builds)

    This is my pro file :

    TEMPLATE = app
    CONFIG += console
    CONFIG -= app_bundle
    CONFIG -= qt

    SOURCES += main.cpp

    INCLUDEPATH += C:\programming\ffmpeg-20130606-git--win32-shared\bin

    LIBS += -LC:\programming\ffmpeg-20130606-git--win32-shared\bin -lavcodec-55.dll -     lavformat-55.dll -lavutil-52.dll

    i get errors like :

    " :-1 : error : cannot find -lavcodec-55.dll"

    " :-1 : error : cannot find -lavformat-55.dll"

    I've also tried :

    INCLUDEPATH += C:\programming\ffmpeg-20130606-git--win32-dev\include
    INCLUDEPATH += C:\programming\ffmpeg-20130606-git--win32-dev\lib

    LIBS += -LC:\programming\ffmpeg-20130606-git--win32-dev\lib -lavcodec -lavformat -lavutil

    LIBS += -LC:\programming\ffmpeg-20130606-git--win32-dev\lib -llibavcodec.dll.a -llibavformat.dll.a -llibavutil.dll.a

    Here it gives a error "During startup program exited with code 0x0000135'

    I even tried to include each library individually. But no results..

    This is my main file :

    #include <iostream>
    using namespace std;
    extern "C" {
     #include <libavcodec></libavcodec>avcodec.h>    // required headers
     #include <libavformat></libavformat>avformat.h>
    }
    int main(int argc, char**argv) {
      av_register_all();             // offending library call
      return 0;
    }
    </iostream>

    A program simple as this will have 2 outcomes :

    1. the program runs but crashes if i call 'av_register_all()'
    2. It just tells me he cannot find the libraries.

    Can someone tell me what it is i'm doing wrong ? Or even give me a hint ? I can't really find a lot of good documentation on this one.

    Thanks in advance !