Recherche avancée

Médias (91)

Autres articles (32)

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

  • FFMPEG stream desktop to youtube

    3 juillet 2018, par user8222409

    There are tutorials out there on how to stream to youtube using ffmpeg, and I have that part of the code done.
    However, I do not know how to stream the desktop in ffmpeg. The tutorials online only show usage of web cams. Anyway, What software do I use to capture the screen and stream using ffmpeg.
    Can I do this natively in ffmpeg. If so, how ?

    what I have so far is

    ffmpeg -re -ar 44100 -ac 2 -acodec pcm_s16le -f s16le -ac 2 -i /dev/zero -f h264 -i pipe:0 -c:v copy -c:a aac -ab 128k -g 40 -strict experimental -f flv -r 30 rtmp://a.rtmp.youtube.com/live2/$1

    where the $1 is a command line param.

  • youtube-dl download best quality and then convert to mp4 and mp3

    31 mars 2017, par JoJota

    I’m trying to download the best audio and video formats of a video with youtube-dl in python. After the download has finished youtube-dl should convert the video to mp4 and the audio to mp3 with the best video and audio quality. The original video and audio files should then get removed after the conversion is done.

    Is it possible to do this with only one command or especially with a maximum of two downloads (best video and best audio) ?

  • ffmpeg streaming to youtube

    8 novembre 2022, par SyndicatorBBB

    I've used the following command to stream mp4 file to youtube :

    


    ffmpeg -re -i merge.mp4 \&#xA;-c:v libx264 -preset veryfast -maxrate 3000k \&#xA;-bufsize 6000k -pix_fmt yuv420p -g 50 -c:a aac -b:a 160k -ac 2 \&#xA;-ar 44100 -f flv rtmp://a.rtmp.youtube.com/live2/<mykey>&#xA;</mykey>

    &#xA;

    I see the ffmpeg streams the data like that :&#xA;enter image description here

    &#xA;

    but yet the youtube streaming page shows nothing yet received :&#xA;enter image description here

    &#xA;

    Any idea what am I missing ?

    &#xA;