Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (64)

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

  • 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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (8344)

  • Converting the sample rate of alac files with ffmpeg [on hold]

    23 décembre 2014, par sodiumnitrate

    I am using ffmpeg in terminal in OS X Yosemite. I have alac files I have previously converted from .flac without realizing that the sample rate is too high for my iPod. Thus, I have a bunch of .m4a files that I am trying to reduce the sample rate from 88,200 to 44,100. I tried the following, which I modified from a command I found elsewhere :

    for f in *.m4a; do ffmpeg -i "$f" -ar 44100  -y "${f%.m4a}.m4a"; done

    This gives me the following message :

    buffer @ 0x7ffed8e002a0] Unable to parse option value "-1" as pixel format
    Last message repeated 1 times
    [buffer @ 0x7ffed8e002a0] Error setting option pix_fmt to value -1.
    [graph 0 input from stream 0:0 @ 0x7ffed8e003a0] Error applying options to the filter.
    Error opening filters!

    And overwrote the files with gibberish.

  • avformat/matroskadec : force 48kHz sample rate when rescaling Opus inital padding

    6 juin 2016, par James Almer
    avformat/matroskadec : force 48kHz sample rate when rescaling Opus inital padding
    

    Mkvtoolnix stores the sample rate of the original stream as reported by the
    "OpusHead" stream header instead of 48kHz, the actual sample rate of the Opus
    stream.
    Ignoring the stored sample rate and forcing 48kHz preserves the correct initial
    padding when remuxing such files.

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/matroskadec.c
  • How to sample `audio/video bit rate and fps ` every second on ffmepg

    25 février 2014, par poc

    I can dump the rtsp streaming into video file by

    ffmpeg -y -t 5  -i rtsp://172.19.1.42/live.sdp -acodec copy -vcodec copy lala.avi

    Now, I wanna sample the streaming's audio/video bit rate and fps every second and dumpinto a text file,

    I can write a script for helping the work ,How could I get it ?