Recherche avancée

Médias (91)

Autres articles (111)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (9460)

  • arm : vp9itxfm : Avoid .irp when it doesn’t save any lines

    4 février 2017, par Martin Storsjö
    arm : vp9itxfm : Avoid .irp when it doesn’t save any lines
    

    This makes it more readable.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavcodec/arm/vp9itxfm_neon.S
  • Record screen and save to .mp4 video

    10 avril 2023, par Freddy J

    I have created an animation in Pyglet and I want to save this animation as a video retaining the same quality as the Pyglet window. I attempt to use imageio and FFMPEG with Pyglet. See relevant snippets below.

    &#xA;

    import numpy as np&#xA;import pyglet&#xA;import imageio.v2 as iio&#xA;&#xA;writer = iio.get_writer("out.mp4")&#xA;&#xA;@window.event&#xA;def on_draw():&#xA;    # Draw&#xA;    # ...&#xA;&#xA;    # Capture frame&#xA;    color_buffer = pyglet.image.get_buffer_manager().get_color_buffer()&#xA;    image_data = buffer.get_image_data()&#xA;    buffer = image_data.get_data("RGBA", image_data.pitch)&#xA;&#xA;    # 4 channels: RGBA&#xA;    frame = np.frombuffer(buffer).reshape((image_data.height, image_data.width, 4))&#xA;    writer.append_data(frame)&#xA;

    &#xA;

    Problem :

    &#xA;

    buffer has expected size of window width * window height * 4.
    &#xA;However, np.frombuffer(buffer) has size buffer size / 8. I do not know why. I expect the size to be equal. Hence, the program fails at the reshape step.

    &#xA;

  • FFmpeg - What muxer do i need to save an AAC audio stream

    1er mars 2017, par David Barishev

    I’m developing Android application, and im using ffmpeg for conversion of files.
    I want my binary file to be as slim as possible since i don’t have many input formats and output formats, and my operation is quite basic.And of course not to bloat the APK.

    In my program ffmpeg receives a file, and copys the audio stream (-acodec copy), the audio stream will always be aac (mp4a). What i need is to save the stream to file.
    My command looks like this : ffmpeg -i {Input} -vn -acodec copy output.aac.

    What muxer do i need to for muxing aac to file ? I have tried flv,mp3,mov but i always get
    Unable to find a suitable output format for 'output.aac', so these options are wrong.
    I don’t need an encoder for stream copy btw.

    Side note : this command work flawlessly on full installation of ffmpeg , but I don’t know which muxer it uses. If there is a way to output the muxer it uses from regular ffmpeg run, it would work too.