Recherche avancée

Médias (91)

Autres articles (22)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (5086)

  • Upload a LIVE HLS output from FFMPEG to Amazon S3 bucket

    22 janvier 2023, par Pit Digger

    I have an ffmpeg command that outputs live hls stream from a vod file to local disk. I would like to upload the HLS chunks and manifest file in real time to Amazon S3 Bucket. Is it possible to upload it directly from memory ?

    


    Here is the ffmpeg command

    


    ffmpeg -stream_loop -1 -re -i bunny_1080p_30fps.mp4 -c:v libx264 \
-x264opts keyint=30:min-keyint=30:scenecut=-1 -tune zerolatency -s 1280x720 \
-b:v 1400k -bufsize 1400k -hls_start_number_source epoch -f hls stream.m3u8


    


    Note that I have checked all questions here but none of them do that for a live stream and for multiple files output like hls or dash stream.

    


    One option that I have tried is using node-watch module and upload file on change notification, but that does introduce some buffering. But if there was any better option. https://github.com/yuanchuan/node-watch

    


  • No NVENC capable devices found with RTX 2080 graphics card

    6 juin 2019, par AL-KOON

    I’m using ffmpeg and I got this error : No NVENC capable devices found

    cmd code : ffmpeg -i "OPM.mkv" -c:a copy -c:v nvenc_h264 test1.mp4

    my graphics card : ASUS GeForce RTX 2080 O8G ROG STRIX OC Edition GDDR6 HDMI DP 1.4 Type-C

    and when I used this command

    ffmpeg -i "OPM.mkv" -map 0:v:0 -map 0:a:0 -c:a copy -c:v nvenc_h264
    -crf 18 -preset slow "test1.mp4"

    I got this error : Error initializing output stream 0:0 -- Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height

  • Encoding 4K 60Hz lossless from a capture card

    13 décembre 2017, par Alex Pizzi

    Windows 10 64-bit
    Ryzen 7
    GTX 1080
    32GB RAM

    Hi all,

    I’m trying to encode 4K 30/60Hz video in a lossless format from a 4K capture card and everything I’ve tried gives me a similar error as in the linked image, [real-time buffer too full or near too full frame dropped]

    [Not mine]
    https://cloud.githubusercontent.com/assets/4932401/22171307/ef5c9864-df58-11e6-8821-4b74ce3f32d0.png

    This is the command I’ve tried most recently :

    ffmpeg.exe -f dshow -video_size 3840x2160 -framerate 30 -pixel_format bgr24 -rtbufsize INT_MAX -i video="MZ0380 PCI, Analog 01 Capture" -vf fps=30 out%d.BMP

    With the images dumped to a 10G RAM disk or 850 EVO. I’m doing this to skip the encoding step.

    I get the same error when encoding with h265 lossless and NVENC h265 lossless.

    I need the video to be lossless as it will be used to test hardware h265 encoders.

    Video source is a 4K Blu-ray.

    Any help would be greatly appreciated. Thank you.

    -Alex P