
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (43)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (6683)
-
How to use Python to capture thumbnails from online videos without downloading the entire video ? [closed]
28 septembre 2023, par gaowanliangWhen watching online videos, the web player can always drag the progress bar without having to download the entire video. This is thanks to the Range in the header, which can specify the range for playback. But I can’t find a way to use Python or ffmpeg to capture a part of the video content from a network video.


The program does not need to be very accurate in how long it takes to capture a screenshot, but it does not need to download the entire video completely.


-
ffmpeg rtsp stream delay
25 juillet 2016, par SpartanI am using FFMPEG with android and saving the RTSP Stream directly into local storage using following command :
ffmpeg -i rtsp://@192.168.241.1:62156 -acodec copy -vcodec copy c:/abc.mp4
This command is working fine and I am able to store RTSP directly into local storage of device.
Problem : (The delay in start of the RTSP download)
This problem mostly occurring with lower end devices and the delay time to start the download RTSP is variably changing(from 0-4 seconds) based upon the configuration of devices. In higher end devices the delay is around 100 to 300 milliseconds and that is okay.
If somehow I can get the delay time in starting the RTSP download then I can handle my cases. So my question is : Is there any way to get the delay time ?
-
Getting Audio and Video from Steams
16 novembre 2018, par anonI’m trying to download a video from BritBox. After observing my network packets, it seems they stream the video in .m4s fragments.
I’ve looked into InviDownloader, but can’t seem to get it to pick up all the pieces. I don’t think I’m giving it the correct URL but can’t find the correct one either. I’ve taken a look at this question but I think it requires a specific URL as well, which I can’t seem to find.
Most fragments (if not all) have a .dash extension, so I tried to get it working with GPAC’s dashcast but couldn’t get that working either. I’ve also seen Handbrake being thrown around but haven’t tried it.
After trying tons of browser extensions, I found one that can correctly piece together the .m4s files, at least to an extent. If you carefully refresh the extension when new packets are downloaded, you can download a result of the entire .m4s.
Then, using
youtube-dl
andffmpeg
you can convert it to an mp4 file. However, this has no audio.I’m not too savvy when it comes to videos or streaming. Is there an easy way to download these videos to an mp4 format with audio ?