Recherche avancée

Médias (91)

Autres articles (35)

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

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (7147)

  • avformat/dvdvideodec : open subdemuxer after initializing IFO headers

    7 octobre 2024, par Marth64
    avformat/dvdvideodec : open subdemuxer after initializing IFO headers
    

    It is wasteful to open the subdemuxer if an error occurs while
    initializing streams or reading IFO headers.

    Signed-off-by : Marth64 <marth64@proxyid.net>

    • [DH] libavformat/dvdvideodec.c
  • Open CV 3.0.0 video not processing windows winpython 2.7.9

    24 juin 2015, par Shikhar Gupta

    I wrote the following code to open a video file and the file is in the same directory as the script, moreover the code to write a video feed from the camera to the file is not working !

    import numpy as np
    import cv2
    cap = cv2.VideoCapture('F:/vtest.avi')
    print cap.isOpened()
    if(cap.isOpened()== False):
       cap.open('F://vtest.avi')
       print cap.isOpened()
    while(cap.read()):
       ret,frame = cap.read()
       gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
       cv2.imshow('frame',gray)
       if cv2.waitKey(1) == ord('q'):
           break
    cap.release()
    cv2.destroyAllWindows()

    But the code threw the following errors. I tried moving the ffmpeg.dll file in Python directory but to no avail.

    False
    False
    Traceback (most recent call last):
     File "F:\2.py", line 11, in <module>
       gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
    error: ..\..\..\..\opencv\modules\imgproc\src\color.cpp:3480: error: (-215) scn == 3 || scn == 4 in function cv::cvtColor
    </module>
  • avcodec/mediacodecdec : refactor color space utils

    10 mars 2023, par Zhao Zhili
    avcodec/mediacodecdec : refactor color space utils
    

    So it can be shared with encoder.

    Signed-off-by : Zhao Zhili <zhilizhao@tencent.com>

    • [DH] libavcodec/mediacodec_wrapper.c
    • [DH] libavcodec/mediacodec_wrapper.h
    • [DH] libavcodec/mediacodecdec_common.c