Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (58)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

  • 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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (8988)

  • asm SIMD sniffer

    1er août 2023, par Андрей Тернити

    There is x264.
It use a lot of x86 asm files. For example pixel-32.asm.
This files can use different SIMD instruction set : mmx, 3DNow !, sse family, others

    


    I need the simple way to automatically analyze every file. I want get which SIMD family in which file are used. How ?

    


    I think every asm file must contain information about which SIMD family it use (or information that no SIMD). Without this information it is very bad idea try to use this files...
    
I am angry, my x86 CPU support mmx and 3DNow ! only, but x264 try call sse, so I get "Illegal instruction" sometimes. I plan to make patch for x264.

    


    P.S. If you can make issues in official repo let me know.

    


    P.P.S. This thread on Doom9 (mirror).

    


  • What are all the command `options` to execute with ?

    25 janvier 2023, par Phil Lucks

    I'd like to be able to compress the video in a way to help improve upload times.

    


    In reading the docs for FFMpeg Kit, using React Native, there is a basic execute command string of '-i file1.mp4 -c:v mpeg4 file2.mp4'... I can guess at what some of this means, in terms of input & output file names based on the ffMPEG docs, however, some of these options I am not sure of.

    


    Like why is there a -i flag prefix ? Is this "input" ?
Why is there -c:v ? Is this "convert video" ?
What if I want to reduce frame rate, or change size of video ?

    


    The TS def is just a string...

    


    Is there a good place to understand what the official docs options map to the strings ? I think

    


  • Error while saving a matplotlib animation, missing 'dpi' argument

    27 septembre 2020, par aarcas

    I'm trying to save an animation of matplotlib.animation.AnimationFunc and I get an error saying 'dpi' argument missing. Obviously, I have the dpi set so I don't understand where this error comes from.

    



    I'm running python 3.6 and matplotlib 3.0.3, I also just installed ffmpeg from ubuntu official repositories (Ubuntu 18.04).

    



    This is the part of my code that should affect that, although I think it should be something of the system :

    



    Writer = writers['ffmpeg']
writer = Writer(fps=15, metadata=dict(artist='Me'), bitrate=1800,)
ani = FuncAnimation(fig, anime, interval=time_step *
                    10**3, frames=F, repeat=False,) 
ani.save('standard_map.mp4', writer=Writer, dpi=100)


    



    The errors is :

    



    with writer.saving(self._fig, filename, dpi):
File "/usr/lib/python3.6/contextlib.py", line 159, in helper
    return _GeneratorContextManager(func, args, kwds)
File "/usr/lib/python3.6/contextlib.py", line 60, in __init__
    self.gen = func(*args, **kwds) TypeError: saving() missing 1 required positional argument: 'dpi'


    



    I tried both adding the lines they suggested there and the error stills the same.

    



    plt.rcParams['animation.ffmpeg_path'] = '/usr/bin/ffmpeg'


    



    I also tried changing the writer to 'imagemagick' the one set on Ubuntu by default and the error persists.