Recherche avancée

Médias (91)

Autres articles (41)

  • 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

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

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (7815)

  • Use FFMPEG to merge RTSP stream from 4 web cameras into a single mosaic stream to YouTube Live [duplicate]

    19 octobre 2020, par Richard West

    I'm trying to take a live RSTP feed from 4 different cameras and create a 2x2 tile mosaic video stream to push to YouTube Live.

    


    I have good results using the ofllowing comand for a single feed, but I have not have any luck in using some of the samples I have found for a 2x2 mosiac.

    


    Some of the camera feeds are 3840x2160 and others are 1920x1080. So I'm expecting that I will need to have some resize logic in place. I would be happy with a 1920x1080 output feed pushed to YouTube.

    


    My current, single camera command, which yields good results, is :

    


    ffmpeg -rtsp_transport tcp -i rtsp ://192.168.1.42:7447/xxxxxxxx -tune zerolatency -vcodec libx264 -pix_fmt + -c:v copy -c:a aac -strict experimental -f flv rtmp ://a.rtmp.youtube.com/live2/xxxx-xxxx-xxxx-xxxx-xxxx

    


    If I could specific a single camera to pull sound from that would be awesome, but I'd also be happy with no sound if that is necessary.

    


  • Youtube DL Unable to get local issuer certificate - CERTIFICATE_VERIFY_FAILED

    24 novembre 2022, par Casper Kristiansson

    I'm trying to use youtube DL with FFmpeg to download an m3u8 stream. Just recently I started receiving this error :

    


    ERROR: Unable to download webpage: <urlopen error="error" verify="verify" unable="unable" to="to" get="get" local="local" issuer="issuer" certificate="certificate">&#xA;(caused by URLError(SSLCertVerificationError(1,&#xA;&#x27;[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed:&#xA;unable to get local issuer certificate (_ssl.c:992)&#x27;)))&#xA;</urlopen>

    &#xA;

    I know Youtube DL supports an option for nocheckcertificate but by enabling this after a couple of minutes the target machine will refuse the connection. When trying to use the same m3u8 stream on another computer, I could download the stream without any issues.

    &#xA;

    I know that someone from Youtubedl CERTIFICATE_VERIFY_FAILED suggested fixing "your system's CA certificate list". What is the process of doing this ?

    &#xA;

    I tried upgrading/reinstalling python and reinstalling the latest Windows update

    &#xA;

    I also want to mention that there hasn't been any issue with downloading for the past year but recently stumbled upon this when switching proxy providers. But because the same setup works on another PC without any issue it's probably not the reason.

    &#xA;

    The system the program is running on is Windows

    &#xA;

    Edit : Another note is that downloading other public m3u8 streams works perfectly fine, so the problem is probably with the system CA SSL.

    &#xA;

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

    &#xA;

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

    &#xA;

    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"&#xA;

    &#xA;

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

    &#xA;

    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"&#xA;

    &#xA;

    What I've done wrong ?

    &#xA;

    System info :

    &#xA;

      &#xA;
    • OS : Windows 10 x64
    • &#xA;

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

    • latest youtube-dl and ffmpeg build
    • &#xA;

    &#xA;

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

    &#xA;

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

    &#xA;