Recherche avancée

Médias (1)

Mot : - Tags -/framasoft

Autres articles (45)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (6873)

  • Stream part of the screen on linux

    1er juin 2014, par Boris Brodski

    How can I stream part of my screen using ffmpeg (avconv) on Linux ?

    I can record part of my screen :

    ffmpeg -f alsa -ac 1 -i pulse -acodec pcm_s16le -f x11grab -r 24 -s 100x200 -i :0.0+20,30 ...

    But trying to stream it adding

    -f rtp rtp://127.0.0.1:1234

    doesn’t work. ffmpeg starts to stream, but ffplay complains

    $ ffplay rtp://127.0.0.1:1234
    [rtp @ 0xaf8026a0] Unable to receive RTP payload type 96 without an SDP file describing it
    [rtp @ 0xaf8026a0] Estimating duration from bitrate, this may be inaccurate
    Input #0, rtp, from 'rtp://127.0.0.1:8080':
     Duration: N/A, bitrate: N/A
    rtp://127.0.0.1:8080: could not open codecs
    1401611400.39 A-V:  0.000 s:0.0 aq=    0KB vq=    0KB sq=    0B f=0/0  

    What do I missing ?

  • Create dynamic playlist in ffmpeg

    12 octobre 2016, par Ahmad Ali Mukashaty

    I want to stream videos countinuously so I create this playlist (test.txt)

    file ’test1.mp4’

    file ’test2.mp4’

    file ’test3.mp4’

    and I use this command in ffmpeg to run playlist

    ffmpeg -re -f concat -i test.txt -b:v 2.5M -c:v libx264 -acodec aac -f mpegts udp://127.0.0.1:1234?pkt_size=188&buffer_size=3M

    But is there a way to add files to run after this playlist without interrupt streaming or Make the process moves to another playlist When the first one ends

    I am looking for any way to stream other movies after playlist finish during the process running (without interrupt streaming)

    please help me

  • How to display a video with alpha channel on video FFMPEG

    5 novembre 2016, par AlfredMeier

    I want to put a video with alpha channel on a default video and stream this to YouTube. But I don’t know how to do that.

    Here is what I have done :
    ffmpeg -re -i video1.mp4 -codec copy -f flv rtmp://a.rtmp.youtube.com/live2/1234-1234-1234-1234

    Thanks for your help :)