Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (91)

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (9930)

  • Changed metadata print option to accept general urls

    8 juillet 2016, par Sami Hult
    Changed metadata print option to accept general urls
    

    This is an - once again - updated patch, that uses avio_write instead
    of avio_puts to stream clean text output without null characters. Works
    now for me as intended.

    Changes metadata filter to accept general urls as file argument without
    breaking former behaviour. As a byproduct, it also allows for writing to
    file "-" if specified as "file :-".

    Example :

    ffmpeg -i test.wav -filter_complex "silencedetect=n=-40dB:d=0.1,ametadata=mode=print:file=’pipe\:4’" -f null

    Signed-off-by : Sami Hult <sami.hult@gmail.com>
    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] Changelog
    • [DH] doc/filters.texi
    • [DH] libavfilter/f_metadata.c
  • emms : Give apriv_emms_yasm() a more general name

    8 octobre 2016, par Diego Biurrun
    emms : Give apriv_emms_yasm() a more general name
    
    • [DBH] libavutil/x86/emms.asm
    • [DBH] libavutil/x86/emms.h
  • GStreamer encountered a general stream error in Qt5 raspberry pi

    7 juin 2017, 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