Recherche avancée

Médias (0)

Mot : - Tags -/albums

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

Autres articles (56)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

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

  • avfilter/af_amix : Fix double-free of AVFilterChannelLayouts on error

    7 août 2020, par Andreas Rheinhardt
    avfilter/af_amix : Fix double-free of AVFilterChannelLayouts on error
    

    The query_formats function of the amix filter tries to allocate a list
    of channel layouts which are attached to more permanent objects
    (an AVFilter's links) for storage afterwards on success. If attaching
    a list to a link succeeds, the link becomes one of the common owners
    of the list. Yet if a list has been successfully attached to links (or if
    there were no links to attach it to in which case
    ff_set_common_channel_layouts() already frees the list) and an error
    happens lateron, the list was manually freed, which is wrong, because
    the list has either already been freed or it is owned by its links in
    which case these links' pointers to their list will become dangling and
    there will be double-frees/uses-after-free when these links are cleaned
    up automatically.

    This commit fixes this by removing the custom freeing code ; this is made
    possible by using the list in ff_set_common_channel_layouts() directly
    after its allocation (without anything that can fail in between).

    Notice that ff_set_common_channel_layouts() is buggy itself which can
    lead to double-frees on error. This is not fixed in this commit.

    Reviewed-by : Nicolas George <george@nsup.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavfilter/af_amix.c
  • Automating youtube-dl to download videos from a Vlive Channel [on hold]

    17 août 2019, par yrcje

    I would like to automate youtube-dl to download any new live streams from a Vlive page, as youtube-dl supports vlive downloading, I would like to ask if it’s possible for me to use a bat to automate it ? As sometimes the replay just gets cut and I’d like to avoid that if possible. I tried looking into phyton as well but I can’t find any phyton related things that is related to vlive as most of them are just youtube.

    Would appreciate any help if possible.

  • looking for gui based HLS downloader based on ffmpeg & or better download code [closed]

    26 mai 2020, par wahiduzzaman sagar

    currently using ffmpeg for downloading HLS video (m3u8). the code i am using is

    &#xA;&#xA;

    ffmpeg -i "www.videoURL.com" -c copy "name name".mp4&#xA;

    &#xA;&#xA;

    its works fine but the problem is it takes a bit more time since I also have to give each video a name where other downloader (video downloadhelper) can automatically get a name from URL. video downloadhelper crashing/stopping a lot so not using it now. also it cant boost speed so i have to run 10-12 simultaneous ffmpeg download with command prompt open to keep the bandwidth use high. which is cluttering the screen and being hard to keep track of.&#xA;so is there any better code for faster download or maybe GUI downloader with some feature like auto naming, multi download, etc

    &#xA;