Recherche avancée

Médias (91)

Autres articles (73)

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

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

Sur d’autres sites (15944)

  • How to use Pipe - stdin in Android ?

    14 mars 2019, par moster67

    I am trying out some features in my ffmpeg on Android and there is a possibility to use a "pipe" as an input-source. The command in ffmpeg is something like this :
    Code :

    ffmpeg -y -f yuv4mpegpipe -i – -i audio.mp3 -target ntsc-dvd -aspect 4:3 foo.mpg

    Basically I am supposed to pass the data stream to ffmpeg with stdin

    Now, anyone knows if "pipes" and "stdin" are available in Android and how to use them ?

  • Broken pipe when trying to pipe ffmpeg png output to another program

    7 mars 2019, par nicky nick

    Here’s my what I’m trying to do :

    ffmpeg -i video.mp4 -vcodec:png -f image2pipe - | waifu2x-caffe-cui -c 128 -d  8 -p cudnn --model_dir "C:\waifu2x-caffe\models\cunet" -s 2 -n 3 -m noise_scale -e .png -l bmp -o %03d.png -i -

    I get :

    av_interleaved_write_frame(): Broken pipe
    Error writing trailer of pipe:: Broken pipe

    How to make this work ? and if possible I want to pipe it again to ffmpeg to create video.

    Edit : I’m trying to extract all the frame from the video and process them with other programs, so piping the output can save me a lot of time because I don’t have to monitor my computer so often.

  • Is there a way to pipe input video into ffmpeg ?

    31 janvier 2019, par Joe Williams

    ffmpeg -f avfoundation -i "1:0" -vf "crop=1920:1080:0:0" -pix_fmt yuv420p -y -r 30 -c:a aac -b:a 128k -f flv rtmp://RTMP_SERVER:RTMP_PORT/STREAM_KEY

    Hello guys, the above command works pretty well. It records the audio/video of the computer. But what I want to do is pipe a repeating video or image(png/jpeg/gif), so that there is no live video feed from the computer, but just the image on the stream with the audio.

    How would you go about doing this ?

    Also, if you know any programming interfaces that can do this same thing, please give suggestions. Because I would rather not use a CLI.