Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (67)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

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

  • vaapi_decode : Make the frames context format selection more general

    19 février 2018, par Mark Thompson
    vaapi_decode : Make the frames context format selection more general
    

    Examine the supported fourcc list manually and make the best choice, then
    use the external attribute on the frames context to force that fourcc.

    • [DH] libavcodec/vaapi_decode.c
    • [DH] libavcodec/vaapi_decode.h
  • cbs : Make tracing more general

    11 septembre 2023, par Mark Thompson
    cbs : Make tracing more general
    

    Turn tracing into callbacks for each syntax element, with default
    callbacks to match current trace_headers behaviour for debug. Move
    the construction of bit strings into the trace callback, which
    simplifies all of the read and write functions.

    Signed-off-by : Fei Wang <fei.w.wang@intel.com>
    Reviewed-by : Neal Gompa <ngompa13@gmail.com>

    • [DH] libavcodec/cbs.c
    • [DH] libavcodec/cbs.h
    • [DH] libavcodec/cbs_av1.c
    • [DH] libavcodec/cbs_bsf.c
    • [DH] libavcodec/cbs_h2645.c
    • [DH] libavcodec/cbs_internal.h
    • [DH] libavcodec/cbs_vp9.c
    • [DH] libavcodec/trace_headers_bsf.c
  • GStreamer encountered a general stream error in Qt5 raspberry pi

    14 décembre 2016, par Myanju

    I’m trying to play a video using QtMediaPlayer in Raspberry pi 2 B. The source code is as follows :

    QMediaPlayer *media;
    QVideoWidget *video;
    ...
    ...
    media = new QMediaPlayer(parent);
    video = new QVideoWidget(parent);
    media->setVideoOutput(video);
    media->setMedia(QUrl::fromLocalFile("/home/pi/Desktop/test3.mp4"));
    media->play();

    But the result is a blank video screen and the following error :

    ** (Bus:2148): WARNING **: ffmpegcolorspace-vo: size 1105920 is not a  
    multiple of unit size 829440
    Error: "GStreamer encountered a general stream error."

    System Information

    Running latest raspbian Jessie OS,
    Installed Qt5.3,
    Installed gstreamer0.10-plugins-good/bad/ugly/ffmpeg and
    Installed Mpeg-2 License

    Here is the video test3.mp4

    I ran this code in Windows with Qt5 installed ; it is working there. But it’s not working in the Raspberry pi. Please tell me what I’m missing here.

    Trying Pipe from Shell

    enter image description here