Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (54)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip 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 2011

    La 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, par

    The 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 Yoz

    I would like to achieve similar results with FFmpeg eq=brightness and CSS brightness filter. However both processes the image differently :

    


    demo

    


    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. :

    


      

    1. CSS filter: contrast(c) saturate(s) can be achieved with FFmpeg eq=contrast=c:saturation=c*s
    2. 


    3. CSS filter: brightness(b) somehow matches FFmpeg colorlevels=rimax=...
    4. 


    5. FFmpeg eq filter alternative routine
    6. 


    


    


    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 ?

    


  • 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 Panicker

    This 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-Piet

    I have an mp3 file at a sample rate value of 44100, let's name it a.mp3.

    


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

    


    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 and 290704 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.