Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (22)

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

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (5941)

  • Forward youtube-dl output to ffmpeg with hardware-accelerated encoding [closed]

    16 mars 2021, par Yehor

    I'm trying to download some videos from youtube and simultaneously forward those to ffmpeg for hardware decoding to h265 (just for purpose of seeing how it works).

    


    My command, that works, but uses (as I understand) software encoding :

    


    youtube-dl -o "./%(playlist)s/%(title)s.%(ext)s" --merge-output-format mkv --postprocessor-args "-c:v libx265 -c:a opus -strict experimental" "target_url"


    


    When I specify the hardware acceleration, I receive the error "Invalid argument". The command is :

    


    youtube-dl -o "./%(playlist)s/%(title)s.%(ext)s" --merge-output-format mkv --postprocessor-args "-hwaccel cuda -c:v hevc_nvenc -c:a opus -strict experimental" "target_url"


    


    What I've done wrong ?

    


    System info :

    


      

    • OS : Windows 10 x64
    • 


    • GPU : Nvidia GeForce 960M (installed the latest driver and CUDA) and should be supported by CUDA
    • 


    • latest youtube-dl and ffmpeg build
    • 


    


    The ffmpeg -encoders output contains 265 codecs, so they also should be supported :

    


    V..... libx265              libx265 H.265 / HEVC (codec hevc)
V..... nvenc_hevc           NVIDIA NVENC hevc encoder (codec hevc)
V..... hevc_amf             AMD AMF HEVC encoder (codec hevc)
V..... hevc_nvenc           NVIDIA NVENC hevc encoder (codec hevc)
V..... hevc_qsv             HEVC (Intel Quick Sync Video acceleration) (codec hevc)


    


  • avformat/iamf : byteswap values in OpusHeader

    16 juillet 2024, par James Almer
    avformat/iamf : byteswap values in OpusHeader
    

    Clause 3.11.1 of IAMF[1] states the values are stored in big endian, in
    contrast to the Ogg Encapsulation for Opus[2] where they are in little endian.

    [1]https://aomediacodec.github.io/iamf/v1.0.0-errata.html#opus-specific
    [2]https://datatracker.ietf.org/doc/html/rfc7845#section-5.1

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/iamf_parse.c
    • [DH] libavformat/iamf_writer.c
    • [DH] tests/ref/fate/iamf-5_1-copy
    • [DH] tests/ref/fate/iamf-5_1-demux
  • FFmpeg send duplicate frames until input have have new frames

    16 mai 2020, par Zahid Nisar

    I am feeding MKV file into ffmpeg using stdin the mkv has h264 and opus codecs in it I want to send this to rtmp the mkv is genrated at run time &#xA;the problem is that some time mkv pause for a time at this time I want to send last frame to rtmp server I am doing this as following but no result

    &#xA;&#xA;

    streamer = spawn(ffmpegPath, [&#x27;-y&#x27;, &#x27;-i&#x27;, &#x27;-&#x27;, &#x27;-i&#x27;, &#x27;-&#x27;, &#x27;-f&#x27;, &#x27;lavfi&#x27;, &#x27;-i&#x27;, &#x27;nullsrc=s=1280x720:d=35:r=25&#x27;, &#x27;-vcodec&#x27;, &#x27;libx264&#x27;, &#x27;-preset&#x27;, &#x27;medium&#x27;, &#x27;-g&#x27;, &#x27;20&#x27;, &#x27;-r&#x27;, &#x27;30&#x27;, &#x27;-b:v&#x27;, &#x27;2500k&#x27;, &#x27;-acodec&#x27;, &#x27;aac&#x27;, &#x27;-b:a&#x27;, &#x27;128K&#x27;, &#x27;-ac&#x27;, &#x27;1&#x27;, &#x27;-bufsize&#x27;, &#x27;512k&#x27;,&#xA;                    &#x27;-filter_complex&#x27;, &#x27;[1:v][0:v]overlay[video]&#x27;, &#x27;-map&#x27;, &#x27;[video]&#x27;, &#x27;-map&#x27;, &#x27;0:a&#x27;, &#x27;-f&#x27;, &#x27;flv&#x27;, "rtmp://x.x.x.x/cc/"]);&#xA;

    &#xA;