Recherche avancée

Médias (91)

Autres articles (97)

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

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

Sur d’autres sites (7109)

  • streaming from generated images using ffmpeg / vlc / live555

    10 octobre 2019, par Pavel

    For the life of me I cannot get this to work correctly.

    The idea is : simple python script that loads an image from a url (different every time) and passes it to ffmpeg, eg :

    python fetch.py | ffmpeg -f image2pipe -framerate 1 -i pipe:.jpg -c:a copy -c:v libx264 -r 5 -b 500000 -s 600x480 ../live555/out.264

    What I really need is to make this work with some sort of rtsp server.
    So far a sort of working approach was to use live555MediaServer that is running on the same server and pretty much streams that out.264 file.

    Why I don’t like this approach :

    a. connecting to rtsp stream using vlc works but it’s very unstable (video stops) and there are not errors or anything, if I click play it resumes.
    debug :
    live555 debug: RTSP track Close, 0 track remaining
    It seems like it just streams whatever the file has at that moment of time and does not do it continuously.

    b. I don’t like the "file" approach. Eg. ffmpeg is creating an out.264 file which grows. Ideally it would simply send the stream to the RTSP server via some protocol.

    c. live555MediaServer just sucks

    It looks like there is a way to run vlc server on my server as well, but I cannot figure out how to make ffmpeg feed the vlc server ?

    Any suggestions ?

  • FFMPEG : FFPLAY binary not getting generated on compilation

    22 juillet 2019, par Zax

    I have downloaded FFMPEG with FFPLAY enabled code from : https://github.com/cus/ffplay

    I use the following command to configure and make the package :

    ./configure --enable-ffplay
    make

    Here it shows that :
    SDL support               no
    as one of the outputs. But i have sdl packages installed in my system.

    However, the packages created are :

    ffmpeg
    ffmpeg_g
    ffserver
    ffserver_g
    ffprobe
    ffprobe_g

    I have referred this post : http://ffmpeg-users.933282.n4.nabble.com/Compiling-FFMPEG-with-ffplay-support-td3414041.html But this didn’t help out.

    I checked my config.log, it has the below lines :

    ffplay='yes'
    ffplay_deps='avcodec avformat swscale swresample sdl'
    ffplay_select='rdft crop_filter'

    I have the sdl packages installed in my system. What is the issue actually. Could anyone please guide me through this.

  • FFMPEG : FFPLAY binary not getting generated on compilation

    2 avril 2017, par Zax

    I have downloaded FFMPEG with FFPLAY enabled code from : https://github.com/cus/ffplay

    I use the following command to configure and make the package :

    ./configure --enable-ffplay
    make

    Here it shows that :
    SDL support               no
    as one of the outputs. But i have sdl packages installed in my system.

    However, the packages created are :

    ffmpeg
    ffmpeg_g
    ffserver
    ffserver_g
    ffprobe
    ffprobe_g

    I have referred this post : http://ffmpeg-users.933282.n4.nabble.com/Compiling-FFMPEG-with-ffplay-support-td3414041.html But this didn’t help out.

    I checked my config.log, it has the below lines :

    ffplay='yes'
    ffplay_deps='avcodec avformat swscale swresample sdl'
    ffplay_select='rdft crop_filter'

    I have the sdl packages installed in my system. What is the issue actually. Could anyone please guide me through this.