
Recherche avancée
Médias (91)
-
DJ Z-trip - Victory Lap : The Obama Mix Pt. 2
15 septembre 2011
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (51)
-
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 les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
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
Sur d’autres sites (13121)
-
FFMPEG Segment Threads Equivalent Option
24 août 2018, par Bruno AndradeI was downloading video from a hls m3u8 stream using the ffmpeg command in php :
exec('ffmpeg -hide_banner -loglevel verbose -n -i https://example.com/playlist.m3u8 -acodec copy -bsf:a aac_adtstoasc -vcodec copy file.mp4 1> log.txt 2>&1', $output, $var);
But I was having problems downloading speed and the problem was not the internet.
So I installed and used the livestreamer.io OR streamlink.github.io/ and also slowed down the download.
So I made use of the
hls-segment-threads=5
option according to the API document :The size of the thread pool used to download segments.
This solved the problem, is there any equivalent option in the FFMPEG ?
Or have something I can do with PHP + FFMPEG to get this result that this hls-segment-threads option provides ?Most shared servers come with FFMPEG installed but the same does not fit with livestreamer or streamlink so I need a solution that works for everyone.
*I do not understand python do not know what this option exactly does
-
FFmpeg eq filter equivalent value for css filter
27 juillet 2018, par Praveen TamilI’m showing the image with css filter applied in browser to how the output will be look like after processing.
But the css filter accept the value in form of percent for contrast, brightness, saturation.
But the ffmpeg’s eq filter is totally different and even more gamma params are used.I applied following filter in browser side
filter: brightness(50%) contrast(100%) saturate(100%);
filter: brightness(100%) contrast(100%) saturate(50%);
filter: brightness(120%) contrast(100%) saturate(125%);I don’t how to do mapping these values to FFmpeg eq filter.
I know below is the default code
eq=contrast=1:brightness=0:saturation=1:gamma=1:gamma_r=1:gamma_g=1:gamma_b=1:gamma_weight=1
I need equivalent value of FFmpeg’s eq filter for above mentioned CSS filters.
And mapping value from CSS filter to eq filter.css filter ref : https://www.w3schools.com/cssref/css3_pr_filter.asp
-
copy streams equivalent for yt-dlp (python)
25 décembre 2024, par GDjkhpI need the
-c:v copy -c:a copy
counterpart of ffmpeg postprocessing for yt-dlp in python.

The following code is how I convert videos which is really slow.


# imagine options -> dict
 options.update({
 'postprocessors': [{
 'key': 'FFmpegVideoConvertor',
 'preferedformat': arg, # can be mp4, webm, etc.
 }]
 })