Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (48)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (7609)

  • avformat/hlsenc : move the warning message from every segment upload to init part

    6 septembre 2019, par Steven Liu
    avformat/hlsenc : move the warning message from every segment upload to init part
    

    Signed-off-by : Steven Liu <lq@chinaffmpeg.org>

    • [DH] libavformat/hlsenc.c
  • OpenCV : FFMPEG : tag 0xffffffff/'����' is not found (format 'mp4 / MP4 (MPEG-4 Part 14)')'

    2 mars 2017, par Gingerbread

    I am trying to save a background subtracted video in python and the following is my code.

    import cv2
    import numpy as np

    capture = cv2.VideoCapture('MAH00119.mp4')
    size = (int(capture.get(cv2.CAP_PROP_FRAME_WIDTH)),
    int(capture.get(cv2.CAP_PROP_FRAME_HEIGHT)))
    fourcc = cv2.VideoWriter_fourcc(*'X264')
    out = cv2.VideoWriter('output.mp4', -1 , 20.0 , size)
    fgbg= cv2.createBackgroundSubtractorMOG2()

    while True:
       ret, img = capture.read()
       if ret==True:
           fgmask = fgbg.apply(img)
           out.write(fgmask)
           cv2.imshow('img',fgmask)

       if(cv2.waitKey(27)!=-1):
           break

    capture.release()
    out.release()
    cv2.destroyAllWindows()

    However, this keeps throwing the following error : "OpenCV : FFMPEG : tag 0xffffffff/’����’ is not found (format ’mp4 / MP4 (MPEG-4 Part 14)’)’"

    I have FFMPEG installed and have added it to the environment variables. My background subtraction code without having to save to a file works fine, so I know there’s nothing wrong with openCV installation. I am stuck at this place. I know that my python doesn’t seem to recognize FFMPEG but I don’t know what else to do apart from adding FFMPEG to the environment variables.
    I am using OpenCV version 3.2 on Windows 10 and Python 2.7.

    Any help will be much appreciated !

  • OpenCV : FFMPEG : tag 0xffffffff/'����' is not found (format 'mp4 / MP4 (MPEG-4 Part 14)')'

    2 août 2017, par Gingerbread

    I am trying to save a background subtracted video in python and the following is my code.

    import cv2
    import numpy as np

    capture = cv2.VideoCapture('MAH00119.mp4')
    size = (int(capture.get(cv2.CAP_PROP_FRAME_WIDTH)),
    int(capture.get(cv2.CAP_PROP_FRAME_HEIGHT)))
    fourcc = cv2.VideoWriter_fourcc(*'X264')
    out = cv2.VideoWriter('output.mp4', -1 , 20.0 , size)
    fgbg= cv2.createBackgroundSubtractorMOG2()

    while True:
       ret, img = capture.read()
       if ret==True:
           fgmask = fgbg.apply(img)
           out.write(fgmask)
           cv2.imshow('img',fgmask)

       if(cv2.waitKey(27)!=-1):
           break

    capture.release()
    out.release()
    cv2.destroyAllWindows()

    However, this keeps throwing the following error : "OpenCV : FFMPEG : tag 0xffffffff/’����’ is not found (format ’mp4 / MP4 (MPEG-4 Part 14)’)’"

    I have FFMPEG installed and have added it to the environment variables. My background subtraction code without having to save to a file works fine, so I know there’s nothing wrong with openCV installation. I am stuck at this place. I know that my python doesn’t seem to recognize FFMPEG but I don’t know what else to do apart from adding FFMPEG to the environment variables.
    I am using OpenCV version 3.2 on Windows 10 and Python 2.7.

    Any help will be much appreciated !