
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (41)
-
Publier sur MédiaSpip
13 juin 2013Puis-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, parWe 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 2011Le 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 WestI'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 KristianssonI'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">
(caused by URLError(SSLCertVerificationError(1,
'[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed:
unable to get local issuer certificate (_ssl.c:992)')))
</urlopen>


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.


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


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


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.


The system the program is running on is Windows


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


-
Forward youtube-dl output to ffmpeg with hardware-accelerated encoding [closed]
16 mars 2021, par YehorI'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)