Advanced search

Medias (1)

Tag: - Tags -/ogg

Other articles (17)

  • Publier sur MédiaSpip

    13 June 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

  • Configuration spécifique pour PHP5

    4 February 2011, by

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

  • La sauvegarde automatique de canaux SPIP

    1 April 2010, by

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

On other websites (6130)

  • Concatenating two audio files, keeping the channel count of the second file

    6 September 2019, by Jon H

    I am attempting to concatenate two MP3 files into a single MP3 file. So far this has worked fine with the following command:

    ffmpeg -y -i "first.mp3" -i "second.mp3" -c:a libmp3lame -qscale:a 1 -filter_complex "[0:0][1:0]concat=n=2:v=0:a=1[outa]" -map "[outa]" combined.mp3

    I wish to keep the channel count of the second input. For example, the first input is always mono, but if the second channel is stereo, I wish the output to be stereo. This command appears to always output the same channel count as the first input.

    I have tried reversing the order of the inputs, and reversing the mapping of the concat filter, but this had the same result.

    Any ideas? Thanks.

  • av1/h264_metadata, filter_units: Count down when deleting units

    17 June 2019, by Andreas Rheinhardt
    av1/h264_metadata, filter_units: Count down when deleting units
    

    When testing whether a particular unit should be kept or discarded, it
    is best to start at the very last unit of a fragment and count down,
    because that way a unit that will eventually be deleted won't be
    memmoved during earlier deletions; and frag/au->nb_units need only be
    evaluated once in this case and the counter is automatically correct
    when a unit got deleted.

    It also works for double loops, i.e. when looping over all SEI messages
    in all SEI units of an access unit.

    Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/av1_metadata_bsf.c
    • [DH] libavcodec/filter_units_bsf.c
    • [DH] libavcodec/h264_metadata_bsf.c
  • avcodec/cuviddec: add capability check for maximum macroblock count

    3 May 2019, by Ruta Gadkari
    avcodec/cuviddec: add capability check for maximum macroblock count
    

    Cuvid supports clips with a limit on maximum number of macroblocks.
    This check was missing after cuvidGetDecoderCaps API call allowing
    unsupported clips to proceed.
    Added the missing check, same as the one in hwaccel nvdec implementation.

    Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>

    • [DH] libavcodec/cuviddec.c