Recherche avancée

Médias (91)

Autres articles (32)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (3520)

  • ffmpeg encode single input to multiple outputs simultaneously

    23 août 2019, par jippyjoe4

    Suppose I have a single input file that I would like to transcode into two different formats (ProRes and Mp4). Individually, the two commands I would use look like this :

    To convert it to mp4, I would use :

    ffmpeg -i in.mov -c:v libx264 -x264-params "nal-hrd=cbr" -b:v 30M -minrate 30M -maxrate 30M -bufsize 60M "out.mp4"

    And to convert it to ProRes, I would use :

    ffmpeg -i in.mov -c:v prores_ks -profile:v 2 -bits_per_mb 540 -vendor apl0 -pix_fmt yuv422p10le "out.mov"

    Rather than running these two commands sequentially to do the conversion, I think ffmpeg can encode to both formats simultaneously and save time. I’ve read this page (https://trac.ffmpeg.org/wiki/Creating%20multiple%20outputs), but I find it confusing. I tried something along the lines of :

    ffmpeg -i "in.mov" \
    -c:v libx264 -x264-params "nal-hrd=cbr" -b:v 30M -minrate 30M -maxrate 30M -bufsize 60M "out.mp4" \
    -c:v prores_ks -profile:v 2 -bits_per_mb 540 -vendor apl0 -pix_fmt yuv422p10le "out.mov"

    But attempting to run this just gives me the error :

    Unable to find a suitable output format for '\

    I don’t quite understand what’s going wrong. How can I encode my single input to both outputs simultaneously ?

  • How to specify the GPU to be used by nvenc in ffmpeg [closed]

    25 septembre 2022, par Gio

    I'm using compiled ffmpeg executable for transcoding mpegts stream from h264 to h265 with nvenc. I have two nvidia Graphics Cards installed on my motherboard : GeForce GTX 690 and Tesla k-10. Is there any codec specific parameters for nvenc to choose the GPU I want to encode with ?

    


  • How to stream frames from ffmpeg to a process ?

    7 mars, par Vorac

    I would like to encrypt camera frames before transmitting. For that purpose the encrypting process needs to get the raw frames through some mode of IPC. I tried reading through the steaming API docs but got lost. This is an "what approach" question instead of a "working solution" one.