Recherche avancée

Médias (91)

Autres articles (39)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (5840)

  • How to capture ffmpeg output in rails ?

    18 août 2019, par HelloWorld

    I’m running a ffmpeg command to try to get the duration of a video file, the command is as follows...

    system('ffmpeg -i C:\Users\example\Desktop\video9.mp4 -f ffmetadata')

    When I run that line it outputs a lot of info to the rails console, including duration. But how would I capture that info so I can split it and grab the data I need ? (I’m doing this inside a rails controller)

    When I run something like this...

    metadata = system('ffmpeg -i C:\Users\example\Desktop\video9.mp4 -f ffmetadata')
    puts metadata

    All it returns is false.

  • How to capture ffmpeg output in rails ?

    8 janvier 2013, par HelloWorld

    I'm running a ffmpeg command to try to get the duration of a video file, the command is as follows...

    system('ffmpeg -i C:\Users\example\Desktop\video9.mp4 -f ffmetadata')

    When I run that line it outputs a lot of info to the rails console, including duration. But how would I capture that info so I can split it and grab the data I need ? (I'm doing this inside a rails controller)

    When I run something like this...

    metadata = system('ffmpeg -i C:\Users\example\Desktop\video9.mp4 -f ffmetadata')
    puts metadata

    All it returns is false.

  • Audio clicks / cracklings with ffmpeg audio recording on mac os

    15 février 2023, par Specimen

    I'm having audio clicks on my ffmpeg audio recordings. If I record with OBS for example, the audio comes out just fine. This is what I put in the terminal :

    


    ffmpeg -f avfoundation -i ":0" test.mp3


    


    where 0 is my Soundflower audio device, which I found using ffmpeg -f avfoundation -list_devices true -i "", which returns :

    


    AVFoundation audio devices:
[0] Soundflower (2ch)


    


    Soundflower, my speakers, and the ffmpeg recording are all set at 48kHz.
There is another thread that states that this may be an issue with ffmpeg version 4.3, and to try to downgrade to 4.2 ; I tried to google how to downgrade on brew, but didn't find anything.