Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (52)

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

  • 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 ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (7890)

  • lavfi/fifo : fix flushing when using request_samples

    4 août 2013, par Anton Khirnov
    lavfi/fifo : fix flushing when using request_samples
    

    If any samples are still buffered when request_frame returns EOF, they
    won’t be returned currently.

    • [DH] libavfilter/fifo.c
  • 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.

    


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