Advanced search

Medias (0)

Tag: - Tags -/objet éditorial

No media matches your criterion on the site.

Other articles (81)

  • Modifier la date de publication

    21 June 2013, by

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • Le profil des utilisateurs

    12 April 2011, by

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 November 2010, by

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

On other websites (12521)

  • lavc/avcodec.h: fix missing line breaks in API documentation

    27 February 2020, by Linjie Fu
    lavc/avcodec.h: fix missing line breaks in API documentation
    

    "In both cases.." and "Repeat this call until.." would be better to
    be in a separate line.

    http://ffmpeg.org/doxygen/trunk/group__lavc__encdec.html

    Signed-off-by: Linjie Fu <linjie.fu@intel.com>
    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/avcodec.h
  • How to understand the client_buffer_time which definition at line 112 of file rtmpproto.c in ffmpeg?

    11 June 2015, by Jerikc XIONG

    There is little information about the client_buffer_time.

    In rtmpproto.c:

    int RTMPContext::client_buffer_time

    client buffer time in ms

    Definition at line 112 of file rtmpproto.c.

    Referenced by gen_buffer_time().

    Can anyone help me understand it?

    Thanks.

  • playing, decoding, seeking, audio from command line

    25 August 2017, by AbstractDissonance

    There are various way to use audio, I would like to find several different audio players that can do the following easily, from the command line:

    1. Carry out the standard audio function: Play, pause, stop, seek(absolute), volume(absolute), mute.

    2. Be able to decode and get the raw data of the audio input so one can display a waveform.

    — Correct answers will provide the player, the command line to do the functions and/or how one can interact with it programmatically if necessary.

    e.g.,

    Program: FFmpeg
    decode: pipe out using -i <filename> -f s16le -ac 1 -</filename>
    play: ffplay -nodisp then send keys to wmproc(keys don’t work without window open and -nodisp closes window, so much wm the keys)
    stop, pause, etc are the same. Does not have a way to absolutely seek or set volume.

    Other programs might be vlc, etc.

    The reason I am asking this is because I would like to provide several options for my program to use what the user might already have without having to require shipping or downloading dlls(i.e., hard dependencies).

    Bonus points for being able to control pitch and speed.