Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (54)

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (11011)

  • download livestream real-time data

    15 juillet 2024, par Chenguang He

    I'm working on a project to design a RTMP server in Java to get livestream data and download to flv file. One requirement is that to capture the real-time data, I need to download the recording for every second instead of downloading entire recording when livestream stop. Is there any way to achieve it ? Thanks

    


    tried to download stream into byte array for every second and decode to flv using H.264 but didn't work.

    


  • Revision 36f61aa836 : Set min_block_size for aq_mode=3 to 8x8. For real-time mode under cbr, this inc

    2 avril 2014, par Marco Paniconi

    Changed Paths :
     Modify /vp9/encoder/vp9_aq_cyclicrefresh.c



    Set min_block_size for aq_mode=3 to 8x8.

    For real-time mode under cbr, this increases the gain (5-10%)
    for speed 5 (none/little change for 6), on vc-clips.

    Change-Id : I9b38beeb3c820de22c43a0ba53a9456168dd24ba

  • OpenSuse - Cannot find installation of real FFmpeg

    27 août 2020, par Harry Boy

    I have OpenSuse Leap 15.1 and have installed ffmpeg and checked that its installed as follows :

    


    pip install ffmpeg
pip list | grep ffmpeg
ffmpeg                 1.4


    


    Now when I run the following code :

    


    import skvideo.io
import skvideo.datasets
bbb = skvideo.datasets.bigbuckbunny()
v = skvideo.io.vread(bbb)


    


    I get this error :

    


    Traceback (most recent call last):&#xA;File "<stdin>", line 1, in <module>&#xA;File "/usr/lib/python3.6/site-packages/skvideo/io/io.py", line 133, in vread&#xA;assert _HAS_FFMPEG, "Cannot find installation of real FFmpeg (which comes with ffprobe)."&#xA;AssertionError: Cannot find installation of real FFmpeg (which comes with ffprobe).&#xA;</module></stdin>

    &#xA;

    I have also tried to set the ffmpeg path as follows but I get another error :

    &#xA;

    import skvideo.io&#xA;skvideo.setFFmpegPath(&#x27;/usr/lib/python3.6/site-packages/ffmpeg/&#x27;)&#xA;/usr/lib/python3.6/site-packages/skvideo/__init__.py:306: UserWarning: ffmpeg/ffprobe not found in path: /usr/lib/python3.6/site-packages/ffprobe/&#xA;  warnings.warn("ffmpeg/ffprobe not found in path: " &#x2B; str(path), UserWarning)&#xA;

    &#xA;

    How can I get this to work on OpenSuse ?

    &#xA;

    This is similar to this question but its Ubuntu : Cannot find installation of real FFmpeg (which comes with ffprobe)

    &#xA;