
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (83)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Organiser par catégorie
17 mai 2013, parDans 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 (6870)
-
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 ?