Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (101)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • 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

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

Sur d’autres sites (9174)

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