Recherche avancée

Médias (0)

Mot : - Tags -/inscription3

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

Autres articles (87)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

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

  • avutil/channel_layout : change AV_CHAN_SILENCE to AV_CHAN_UNUSED in the docs

    11 février 2024, par Marton Balint
    avutil/channel_layout : change AV_CHAN_SILENCE to AV_CHAN_UNUSED in the docs
    

    It got renamed during the API design phase.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavutil/channel_layout.h
  • How to capture audio using Xuggle API

    28 juillet 2014, par AnilJ

    To capture video using Xuggle API, we use the following device attributes.

    Driver name: v4l2
    Device name: /dev/video0

    What is the equivalent attributes for the audio device to capture and record the audio signal from the ubuntu platform ?

  • avutil/timecode : fix av_timecode_get_smpte_from_framenum with 50/60 fps

    20 juillet 2020, par Marton Balint
    avutil/timecode : fix av_timecode_get_smpte_from_framenum with 50/60 fps
    

    SMPTE 12M timecode can only count frames up to 39, because the tens-of-frames
    value is stored in 2 bit. In order to resolve this 50/60 fps SMPTE timecode is
    using the field bit (which is the same bit as the phase correction bit) to
    signal the least significant bit of a 50/60 fps timecode. See SMPTE ST
    12-1:2014 section 12.1.

    Therefore we slightly change the format of the return value of
    av_timecode_get_smpte_from_framenum and AV_FRAME_DATA_S12M_TIMECODE and start
    using the previously unused Phase Correction bit as Field bit. (As the SMPTE
    standard suggests)

    We add 50/60 fps support to av_timecode_get_smpte_from_framenum by calling the
    recently added av_timecode_get_smpte function in it which already handles this
    properly.

    This change affects the decklink indev and the DV and MXF muxers. MXF has no
    fate test for 50/60fps content, DV does, therefore the changes.

    MediaInfo (a recent version) confirms that half-frame timecode must be inserted
    to DV. MXFInspect confirms valid timecode insertion to the System Item of MXF
    files. For MXF, also see EBU R122.

    Note that for DV the field flag is not used because in the HDV specs (SMPTE
    370M) it is still defined as biphase mark polarity correction flag. So it
    should not matter that the DV muxer overrides the field bit.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavutil/timecode.c
    • [DH] libavutil/timecode.h
    • [DH] tests/ref/vsynth/vsynth1-dv-hd
    • [DH] tests/ref/vsynth/vsynth2-dv-hd
    • [DH] tests/ref/vsynth/vsynth3-dv-hd
    • [DH] tests/ref/vsynth/vsynth_lena-dv-hd