Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (62)

  • 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

  • Diogene : création de masques spécifiques de formulaires d’édition de contenus

    26 octobre 2010, par

    Diogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
    A quoi sert ce plugin
    Création de masques de formulaires
    Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
    Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (10039)

  • avcodec/nvenc : Add support for H.265 encoding

    24 mars 2015, par Philip Langdale
    avcodec/nvenc : Add support for H.265 encoding
    

    Sufficiently new nvenc hardware (GM20x or later) has support for H.265
    encoding. This works the same as the H.264 encoder except the
    codec parameters are different.

    Due to the fact that common codec parameters are not shareable, there’s
    quite a bit of conditional logic you’d wish we could do without, but
    such is life.

    Signed-off-by : Philip Langdale <philipl@overt.org>
    Reviewed-by : Timo Rothenpieler <timo@rothenpieler.org>

    • [DH] libavcodec/Makefile
    • [DH] libavcodec/allcodecs.c
    • [DH] libavcodec/nvenc.c
  • ffmpeg : properly cleanup filter graph on init failure

    2 mars 2017, par wm4
    ffmpeg : properly cleanup filter graph on init failure
    

    The filter field is often used to check whether a filter is
    configured. If configuring the filter actually fails somewhere in
    the middle of it, these fields could still be set to non-NULL, which
    lead to other code accessing the half-configured filter graph, which
    in turn could lead to crashes within libavfilter.

    Solve this by properly resetting all fields.

    This was triggered by a fuzzed sample after the recent changes. It’s
    unknown whether this behavior could be triggered before that.

    • [DH] ffmpeg_filter.c
  • Append multiple audio files into a single audio file with overlap

    4 octobre 2022, par user3564069

    I have been trying to make an application that takes an array of wav or mp3 files as an input.&#xA;I want it to then produce an output file of all the wavs or mp3's in sequential order they were added, but each wav added should overlap the previous wav file added by half a second.

    &#xA;

    So it should be Wav1 -> wav2 -> wav3 = output.wav, but with the start of wav2 overlapping wav1 and wav3 overlapping wav2.

    &#xA;

    I have tried to use SOX to create silence for each required duration per wav and then append it and outputted a new wav file and then join them all at the end, while this works it is incredibly slow.

    &#xA;

    I am open to any suggestions IE FFMPEG.&#xA;I tried using suggestions here FFMPEG ADelay using a FFMPEG feature known as ADelay but i was unable to make it work past 2 input files

    &#xA;