
Recherche avancée
Autres articles (47)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains 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 ;
-
Configuration spécifique pour PHP5
4 février 2011, parPHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
Modules spécifiques
Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)
Sur d’autres sites (8322)
-
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 ?
-
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 ?
-
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.