Recherche avancée

Médias (0)

Mot : - Tags -/configuration

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

Autres articles (75)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (8763)

  • 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;