Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (66)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (12046)

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