
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (54)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
L’utiliser, en parler, le critiquer
10 avril 2011La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
Une liste de discussion est disponible pour tout échange entre utilisateurs. -
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 (...)
Sur d’autres sites (11000)
-
FFmpeg eq filter brightness vs. CSS brightness
21 juillet 2022, par YozI would like to achieve similar results with FFmpeg eq=brightness and CSS brightness filter. However both processes the image differently :




This has been partially discussed in Difference between FFMPEG eq ... and CSS filters ? & FFmpeg eq filter complex : Contrast. There are multiple topics discussed, i.e. :


- 

- CSS
filter: contrast(c) saturate(s)
can be achieved with FFmpegeq=contrast=c:saturation=c*s
- CSS
filter: brightness(b)
somehow matches FFmpegcolorlevels=rimax=...
- FFmpeg eq filter alternative routine










The eq filter has two routines that operate upon the pixel data. One
of them is mathematically equivalent to CSS but is only activated if
the user supplies an expression to change gamma




I wonder if there is a way to achieve similar results, by modifying ffmpeg
eq
filter values as mentioned in point 1. or 3. ?

Can someone provide more insight into the second eq routine as mentioned in point 3. , how exactly this can be activated in my case ?


- CSS
-
This program is only provided for compatibility and will be removed in a future release. Please use avconv instead [duplicate]
1er septembre 2014, par Reshma R PanickerThis question already has an answer here :
I am using ffmpeg for uploading videos.
While uploading some mp4 files, it shows an error :-
ffmpeg version 0.8.10-6:0.8.10-0ubuntu0.12.10.1, Copyright (c) 2000-2013 the Libav developers
built on Feb 6 2014 20:56:10 with gcc 4.7.2
*** THIS PROGRAM IS DEPRECATED ***
This program is only provided for compatibility and will be removed in a future release. Please use avconv instead.Please help me to find some solution.
-
Why the number of samples given by `ffmpegio` differs using 2 methods ?
24 septembre 2024, par Julien Larget-PietI have an mp3 file at a sample rate value of
44100
, let's name ita.mp3
.

Using python library
ffmpegio
with the following code, i get a total amount of sample equal to290704
.

with ffmpegio.open(file, 'ra', blocksize = 16, sample_fmt = 'dbl') as file_opened:

 for i, indata in enumerate(file_opened):

 do some stuff
 print((i + 1) * 16)



But,


ffmpegio.probe.audio_streams_basic('a.mp3')[0]['nb_samples']


gives me
292608


How the difference between
292608
and290704
could be explained ?

I search in
ffmpegio
documentation, but found nothing that trigered my attention :

https://python-ffmpegio.github.io/python-ffmpegio/


Thanks.


I tried to get more information about how the total number of samples was calculated in
ffmpegio.probe.audio_streams_basic()


Also, the difference does not seem to increase with increasing the length of the mp3 file.