Recherche avancée

Médias (0)

Mot : - Tags -/navigation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (62)

  • 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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

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

  • 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