Recherche avancée

Médias (91)

Autres articles (43)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • 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

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

Sur d’autres sites (5581)

  • ffmpeg nvenc_h264 streaming uhd2160 rawvideo. Youtube buffering

    23 janvier 2019, par Alex Deroza

    I use this batch file for starting my stream :

    echo starting transocding from native uhd2160 to fhd format.. Host: YouTube
    ffmpeg ^
       -loglevel -8 ^
       -f rawvideo -s:v 1920x1080 -r 60 -pix_fmt nv12 ^
       -f dshow -i video="Game Capture 4K60 Pro Video 01":audio="Game Capture 4K60 Pro Audio 01" ^
       -c:v h264_nvenc ^
       -level:v 4.2 ^
       -profile:v high ^
       -preset:v hq ^
       -b:v 8.8M ^
       -color_range 2 ^
       -colorspace bt709 ^
       -bf 0 ^
       -g 60 ^
       -2pass 1 ^
       -rc:v cbr ^
       -coder cabac ^
       -acodec aac ^
       -ab 128k ^
       -movflags +faststart ^
       -f flv rtmp://a.rtmp.youtube.com/live2/xxxx-xxxx-xxxx-xxxx && pause

    Stream on YouTube starts fine, and plays with good quality. But stream stops after when "Buffer Health" emptied. And in this situation Youtube says that "Video output low", "YouTube is not receiving enough video to maintain smooth streaming. As such, viewers will experience buffering."

    I can’t understand why it happens. Because I’ve a good ISP, and over 30 mbps inet to YT services within 90ms latency to them.

    YouTube is not receiving enough video to maintain smooth streaming. As
    such, viewers will experience buffering.

    Your encoder is sending data faster than realtime (multipleseconds of
    video each second). You must rate limit your livevideo upload to
    approximately 1 second of video each second.

    The stream’s current bitrate (5730.00 Kbps) is lower than the
    recommended bitrate. We recommend that you use a stream bitrate of
    4500 Kbps.

  • How to use ffmpeg to encode multi-channel video ?

    13 juillet 2018, par Leo

    Like nomral video have RGB/YUV, 3 channels.
    Is it possible use the existing video convertor to encode more than 3 channel video ? (e.g. given 5 folders of the same number and resolution pictures, generate a 5-channel video from them)
    I not need to playback the 5-channel video, which is impossible for 3-channel display. I just need to encode it and then decode it back to images. Actually what I am looking for is not a playable video format, I am trying to compressing several similar video content into one file, so that hopefully they can share the motion vectors and save more space.

    Dose any existing video codec support this manipulation ? Or how should I rewrite some part of the exsiting video codec(some light weight implementation of H264) to support it ?

  • Convert youtube video files with ffmpeg to a format that can be playable on ios devices

    26 décembre 2018, par Amin

    I’ve created a telegram robot that downloads YouTube files and sends them to the user. Since most of our users use ios devices, Our first priority is ios.
    Videos files play on Windows and Android but not broadcast on ios.
    I convert format with ffmpeg after download from youtube :

    ffmpeg -i input.mp4 -strict -2 -vcodec mpeg4 output.mp4

    But in addition to prolonging the processing time, the file size increases and eventually the file will not run again in ios.