Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (65)

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

  • 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

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

  • fate : Add test for mss1 codec

    18 avril 2016, par Petru Rares Sincraian
    fate : Add test for mss1 codec
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] tests/fate/microsoft.mak
    • [DH] tests/ref/fate/mss1-pal
  • ffmpeg multiple loglevel parameters

    9 juillet 2013, par django

    From the document at here
    ffmpeg has following loglevel parameters.

    Simple usage would be
    "ffmpeg -loglevel error rest_of_ffmpeg_options"

    How can I use 3 loglevels together ?
    I tried following but in this case error works while warning and fatal are ignored.
    Inshort which ever is first after -loglevel is the only level working.

    -loglevel error warning fatal

    -loglevel [repeat+]loglevel | -v [repeat+]loglevel

       ‘quiet’

           Show nothing at all; be silent.
       ‘panic’

           Only show fatal errors which could lead the process to crash, such as and assert failure. This is not currently used for anything.
       ‘fatal’

           Only show fatal errors. These are errors after which the process absolutely cannot continue after.
       ‘error’

           Show all errors, including ones which can be recovered from.
       ‘warning’

           Show all warnings and errors. Any message related to possibly incorrect or unexpected events will be shown.
       ‘info’

           Show informative messages during processing. This is in addition to warnings and errors. This is the default value.
       ‘verbose’

           Same as info, except more verbose.
       ‘debug’

           Show everything, including debugging information.
  • How to calculate bitraite for ffmpeg ?

    2 juin 2015, par rs41

    I want to convert one video to 4 formats( webm low/high, mp4 low/high)

    When I execute last mp4 high convertation for small files, which looks like this

    ffmpeg -i Weird9.3gp -codec:v libx264 -b:v 10k -maxrate 1000k -bufsize 2000k -movflags +faststart -vprofile high -preset slow -vf 'scale=trunc(iw/2)*2:720' -threads 0 -codec:a aac -strict -2 -b:a 128k -ac 2 -f mp4 -threads 0 -y /Users/guest/high/movie.mp4

    It shows something like this

    Error while opening encoder for output stream #0:1 - maybe incorrect parameters > such as bit_rate, rate, width or height

    If I change "-b:a 128k" to "-b:a 32k" everything is ok.

    How to calculate bitraite properly ? Does it depends on source video file size ?