Recherche avancée

Médias (3)

Mot : - Tags -/plugin

Autres articles (67)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (6801)

  • Anomalie #3322 : Erreur de hreflang sur lien vers rubrique (en 2.1, 3.0 et 3.

    28 octobre 2014, par realet RealET

    Donc, tu trouves "sain" d’avoir cet affichage :
    This is translated in english [fr]

    Cela dans un site ou comme je l’indique dans le rapport de bug, le choix de la langue sur les rubriques n’est pas autorisé.
    Du coup, la langue de toute les rubriques est la langue par défaut du site (fr).
    Mais l’intégralité des rubriques à les multi pour avoir la version fr et en disponible.

    Pour moi, il y a une incohérence de fonctionnement :

    1. rubrique 12 prend automatiquement le texte du multi dans la langue de navigation ("en" dans notre cas)
    2. rubrique 12 mais considère que la destination qu’il vient d’afficher en anglais est en français

    Pour le 1. c’est bien que ça affiche en anglais, parce qu’en cliquant dessus, ça va effectivement affiché de l’anglais (au moins pour le titre qui est en anglais)
    Pour le 2. c’est confusionnant parce que ça prévient que le contenu visé sera en français, alors que justement il est en anglais.

  • runtime error when linking ffmpeg libraries in qt creator

    6 juillet 2012, par dxthegreat

    I'm quite new around here but i hear that if you want a question answered, stackoverflow is the place to ask it >.<. So i hope that my question isn't too trivial that everyone will get annoyed at my lack of research (I've tried googling for two days already D= no progress !)
    I've also asked this question in the Qt forums, but i figured i'd ask here too.

    so...

    For the last few days I’ve been fiddling around with opengl and the like, trying to write a video player.

    However, when i try to import the ffmpeg libraries (avcodec, avformat, avutils etc), an error occurs on runtime (the program compiles fine). When compiled and run in debug mode, the error message gives me only a memory address and error code 135 (DLL not found).

    This error occurs when i include a function from those libraries in my code (e.g. av_register_all()) and it occurs regardless of whether the function is actually called.

    So i’m thinking that I’m doing something wrong when linking these libraries.
    I’m currently using :
    Windows vista (32bit),
    Qt creator 2.4.1 based on Qt 4.7.4 (32bit),
    Zeranoe’s FFmpeg build git-3233ad4 (2012-06-30)

    My .pro file consists of :

    QT       += core gui opengl

    TARGET = test
    TEMPLATE = app


    SOURCES += main.cpp\
           mainwindow.cpp \
       glwidget.cpp

    HEADERS += mainwindow.h \
       glwidget.h \

    FORMS    += mainwindow.ui


    LIBS += -L"$$_PRO_FILE_PWD_/libraries/ffmpeg/libs/" -lavcodec -lavformat -lavutil
    INCLUDEPATH += libraries/ffmpeg/includes

    I’ve tried many variations to the LIBS += line and checked my filepath many times. However, the DLL not found error occurs in all of these variations =(.

    Is there something I’m forgetting when doing these includes ?

    Thanks in advance >.<,
    (young and naive) aspiring dev

  • Merge individual frame to video file using Opencv

    18 août 2022, par Rohit

    I am trying to stack a individual frame to a video file using Opencv. I want to combine two different code together to make the individual frame.&#xA;Following code help me extract the individual frame,

    &#xA;

    fourcc = cv2.VideoWriter_fourcc(*&#x27;mp4v&#x27;)&#xA;out = cv2.VideoWriter(&#x27;file_data.mp4&#x27;,fourcc,20 (1920,1080),False)&#xA;while True:&#xA;    ret, frame=cap.read()&#xA;    mask = object_detector.apply(frame)&#xA;    _, mask  = cv2.threshold(mask,254,255,cv2.THRESH_BINARY)       &#xA;    contours,_ = cv2.findContours(mask, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)&#xA;    res = cv2.bitwise_and(frame,frame,mask=mask)&#xA;    for cnt in contours:&#xA;        area = cv2.contourArea(cnt)&#xA;        if area>1000:   &#xA;            #print("Area of contour:", area)&#xA;            cv2.drawContours(frame, [cnt], -1, (0,255,0),2)&#xA;            cv2.imwrite("file%d.jpg"%count, frame)&#xA;            out.write(frame)&#xA;    if cv2.waitKey(1) and 0xFF == ord(&#x27;q&#x27;):&#xA;        break&#xA;

    &#xA;

    I tried storing the individual frame in array, but it didn't work. It doesn't show any error, but pc crash.

    &#xA;

    &#xA;

    fps = 20,&#xA;,width = 1920&#xA;,height = 1080

    &#xA;

    &#xA;