Recherche avancée

Médias (1)

Mot : - Tags -/publishing

Autres articles (46)

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

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

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

  • avcodec/vlc : Use structure instead of VLC_TYPE array as VLC element

    13 juin 2022, par Andreas Rheinhardt
    avcodec/vlc : Use structure instead of VLC_TYPE array as VLC element
    

    In C, qualifiers for arrays are broken :
    const VLC_TYPE (*foo)[2] is a pointer to an array of two const VLC_TYPE
    elements and unfortunately this is not compatible with a pointer
    to a const array of two VLC_TYPE, because the latter does not exist
    as array types are never qualified (the qualifier applies to the base
    type instead). This is the reason why get_vlc2() doesn't accept
    a const VLC table despite not modifying the table at all, as
    there is no automatic conversion from VLC_TYPE (*)[2] to
    const VLC_TYPE (*)[2].

    Fix this by using a structure VLCElem for the VLC table.
    This also has the advantage of making it clear which
    element is which.

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

    • [DH] libavcodec/4xm.c
    • [DH] libavcodec/aacdec_template.c
    • [DH] libavcodec/aacps_common.c
    • [DH] libavcodec/aacsbr_template.c
    • [DH] libavcodec/asvdec.c
    • [DH] libavcodec/atrac3.c
    • [DH] libavcodec/atrac3plus.c
    • [DH] libavcodec/atrac9dec.c
    • [DH] libavcodec/bink.c
    • [DH] libavcodec/cfhddata.c
    • [DH] libavcodec/clearvideo.c
    • [DH] libavcodec/dcahuff.c
    • [DH] libavcodec/dvdec.c
    • [DH] libavcodec/faxcompr.c
    • [DH] libavcodec/get_bits.h
    • [DH] libavcodec/h264_cavlc.c
    • [DH] libavcodec/huffyuvdec.c
    • [DH] libavcodec/imc.c
    • [DH] libavcodec/intrax8.c
    • [DH] libavcodec/ivi.c
    • [DH] libavcodec/mlpdec.c
    • [DH] libavcodec/mobiclip.c
    • [DH] libavcodec/mpc7.c
    • [DH] libavcodec/mpc8.c
    • [DH] libavcodec/mpeg12.c
    • [DH] libavcodec/mpeg4videodec.c
    • [DH] libavcodec/mpegaudiodec_common.c
    • [DH] libavcodec/msmpeg4dec.c
    • [DH] libavcodec/mss4.c
    • [DH] libavcodec/qdm2_tablegen.c
    • [DH] libavcodec/qdm2_tablegen.h
    • [DH] libavcodec/qdmc.c
    • [DH] libavcodec/rl.c
    • [DH] libavcodec/rv10.c
    • [DH] libavcodec/rv34.c
    • [DH] libavcodec/rv40.c
    • [DH] libavcodec/svq1dec.c
    • [DH] libavcodec/tableprint_vlc.h
    • [DH] libavcodec/tscc2.c
    • [DH] libavcodec/vc1.c
    • [DH] libavcodec/vlc.c
    • [DH] libavcodec/vlc.h
    • [DH] libavcodec/vp3.c
  • avformat/iamf_parse : use the public iamf helpers to allocate structs

    23 janvier 2024, par James Almer
    avformat/iamf_parse : use the public iamf helpers to allocate structs
    

    Should fix memory leaks from non-freed fields due to missing AVClass
    in the allocated structs.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/iamf_parse.c
  • mac terminal ffmpeg batch recursive conversion preserving directory structure

    13 avril 2020, par kidnim

    i'm using ffmpeg on mac to batch convert .flv to .mp4 files. i'm trying to find all files in subdirectories of the current directory and save new files in the same directory.

    &#xA;&#xA;

    for instance starting with :

    &#xA;&#xA;

    subdirectory1/video1.flv&#xA;subdirectory1/video2.flv&#xA;subdirectory2/video1.flv&#xA;

    &#xA;&#xA;

    and ending with

    &#xA;&#xA;

    subdirectory1/video1.mp4&#xA;subdirectory1/video2.mp4&#xA;subdirectory2/video1.mp4&#xA;

    &#xA;&#xA;

    i've gotten this far but can't figure out how to save with preserved recursive directories

    &#xA;&#xA;

    for i in  `find -name . "*.flv"`; do ffmpeg -i "$i" "${i%.*}.mp4"; done&#xA;

    &#xA;