Recherche avancée

Médias (91)

Autres articles (52)

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

  • How can I create a stream of my screen on a Windows computer for another device on my network ? [on hold]

    30 novembre 2018, par user279040

    I want to view what is seen on my Windows laptop screen on my tv, which is connected to a device running enigma 2, "screen mirroring". There are no software or plugins that will work on the device for this.

    However the device can play live stream urls of the form :

    http://portal.geniptv.com:8080/live#/abc1/abc2/19517.ts

    I am thinking maybe I could get something to create an expanding .ts file that’s capturing the screen, and then serve this up through http?

    It may also be able to use other protocols like udp :// or other file extensions, I would certainly give them a shot if they reduced lag.

    I spent hours installing different streaming software, none of which worked. I am just looking for a simple solution where I might give ffmpeg a command and it would do all I require. I have python installed as well if I need that to for example set up a http server.

  • ffmpeg watermark logo with hardcode subtitle

    29 mai 2013, par Qatarson

    Hi I want to add watermark png image to video with hardcode substitle .srt file at same time what changes i should do the following line

    ffmpeg -i input.mkv -threads 0 -c:v libx264 -crf 28 -preset veryslow -vf "movie=watermark.png [watermark]; [in][watermark] overlay=0:0 [out]"  output.mp4
  • I have two ffmpeg command one is for Overlay text on video and other is for add picture logo on video, i want to merge them but it's not working

    18 février 2019, par Zeeshan Sheikh

    i want to combine these two commands
    one is for overlay text on video :

    1) ffmpeg -i video.mp4 -vf "movie=logo.png [watermark] ; [in][watermark] overlay=10:10 [out]" -y output.mp4

    2) ffmpeg -i video.mp4 -filter:v drawtext="fontfile=font/arial.ttf:text=’Text’:fontcolor=white@1.0:fontsize=30:y=h/2:x=0:enable=’between(t,6,10)’" -t 10 e :\output.mp4

    i want to use both functionaties into one command. but it’s not working on my side