Recherche avancée

Médias (91)

Autres articles (109)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (7312)

  • Fail to get the statistics of https video using ffprobe

    23 janvier 2017, par amith

    I want to collect the statistics of a video stream backed by https url.

    on executing
    ffprobe https://www.youtube.com/watch?v=YbYjtSFa5Fs

    I get the following output

    vagrant@kaybus:/vagrant/kaybus$ ffprobe https://www.youtube.com/watch?v=YbYjtSFa5Fs
    ffprobe version N-80901-gfebc862 Copyright (c) 2007-2016 the FFmpeg developers
     built with gcc 4.8 (Ubuntu 4.8.4-2ubuntu1~14.04.3)
     configuration: --extra-libs=-ldl --prefix=/opt/ffmpeg --mandir=/usr/share/man --enable-avresample --disable-debug --enable-nonfree --enable-gpl --enable-version3 --enable-libopencore-amrnb --enable-libopencore-amrwb --disable-decoder=amrnb --disable-decoder=amrwb --enable-libpulse --enable-libfreetype --enable-gnutls --enable-libx264 --enable-libx265 --enable-libfdk-aac --enable-libvorbis --enable-libmp3lame --enable-libopus --enable-libvpx --enable-libspeex --enable-libass --enable-avisynth --enable-libsoxr --enable-libxvid --enable-libvidstab
     libavutil      55. 28.100 / 55. 28.100
     libavcodec     57. 48.101 / 57. 48.101
     libavformat    57. 41.100 / 57. 41.100
     libavdevice    57.  0.102 / 57.  0.102
     libavfilter     6. 47.100 /  6. 47.100
     libavresample   3.  0.  0 /  3.  0.  0
     libswscale      4.  1.100 /  4.  1.100
     libswresample   2.  1.100 /  2.  1.100
     libpostproc    54.  0.100 / 54.  0.100
    [tls @ 0x3547140] A TLS packet with unexpected length was received.
    https://www.youtube.com/watch?v=YbYjtSFa5Fs: Input/output error

    [tls @ 0x3547140] A TLS packet with unexpected length was received.
    How to fix the above error ?

    https is listed in ffprobe’s supported input and output protocols.

    ffprobe -version

    vagrant@kaybus:/vagrant/kaybus$ ffprobe -version
    ffprobe version N-80901-gfebc862 Copyright (c) 2007-2016 the FFmpeg developers
    built with gcc 4.8 (Ubuntu 4.8.4-2ubuntu1~14.04.3)

    Thanks

  • How do I play an audio clip from a https URL in Qt6 on Windows ?

    20 mai 2023, par wiktort1

    I keep getting the following error :

    


    https protocol not found, recompile FFmpeg with openssl, gnutls or securetransport enabled


    


    I link OpenSSL in my project, I also have OpenSSL Toolkit installed through the Qt Maintenance Tool, however that doesn't seem to fix it.

    


    I have also found an answer online, that said that I need to copy the OpenSSL DLLs to my build folder, but that didn't work either.

    


    I use Qt 6.5.0.

    


    Do I have to compile Qt on my own ? or is there a different approach ?

    


  • Custom video buffering from remote https url

    6 octobre 2022, par b.stevens.photo

    In the abstract, how does video buffering work ? Say I have a video file on a remote server that I want to download to a device and play, is there any way I could implement a custom buffering algorithm with just an https url ?

    


    I've been googling it and can't find anything technical on video buffering, I would assume most video players have a buffering algorithm built in but I'm not using a video player on this particular project.

    


    Any help or guidance is appreciated.