Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

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

Autres articles (96)

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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (16625)

  • Will ffmpeg slow down my server ? [on hold]

    12 novembre 2015, par Akash Bose

    I am trying to build a social network where people can upload their mp3 audio files and I want those files to convert to lower bit rate on the fly with ffmpeg.

    Will it slow down my server if I have minimum amount of good traffic ?

    And it would be great if you can tell what server configuration do i need for this kind of setup ?

  • Restreaming rtmpsuck saved file

    8 novembre 2013, par xester

    i want to use rtmpsuck to save one file and stream that file to my house network.

    due to the duration of that file its in the file using ffmpeg to do it will go down after the duration time even if with -re.

    Theres anyway someone knows that im able to do it ?

  • How to stream the desktop using FFMPEG , and set the output to http://127.0.0.1:8080

    26 décembre 2023, par Yamine Klioui

    i am trying to use FFMPEG on windows to stream my entire desktop, through my localhost address : 127.0.0.1:8080 , and it will be accessible from another computer in the same network , using vlc by opening network url, or embed it in a source video file for exemple.
i tried the commande here :

    


    ffmpeg -f gdigrab -framerate 6 -i desktop output.mp4  


    


    but this record the entire desktop (what i want to do) and store it in ouput.mp4 file , i tried changing it to :

    


        ffmpeg -f gdigrab -framerate 6 -i desktop http://127.0.0.1:8080


    


    but i get this error :

    


    [gdigrab @ 0000023b7ee4e540] Capturing whole desktop as 1920x1080x32 at (0,0)
[gdigrab @ 0000023b7ee4e540] Stream #0 : not enough frames to estimate rate ; consider increasing probesize
Input #0, gdigrab, from 'desktop' :
Duration : N/A, start : 1625841636.774340, bitrate : 398133 kb/s
Stream #0:0 : Video : bmp, bgra, 1920x1080, 398133 kb/s, 6 fps, 1000k tbr, 1000k tbn
[NULL @ 0000023b7ee506c0] Unable to find a suitable output format for 'http://127.0.0.1:8080'
http://127.0.0.1:8080 : Invalid argument

    


    but i want to set the output as : http://127.0.0.1:8080
how should i do that ?

    


    Update :
I found this command :

    


    ffmpeg -f gdigrab -framerate 30 -i desktop -vcodec mpeg4 -q 12 -f mpegts http://127.0.0.1:8080

    


    it seems to stream, but i am not able to open it from nor vlc nor media player