Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (50)

  • 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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

Sur d’autres sites (10365)

  • ffmpeg : take bsf arguments from the command line

    29 novembre 2014, par Christophe Gisquet
    ffmpeg : take bsf arguments from the command line
    

    The format is now :
    - bsf:X filter1[=opt1=str1/opt2=str2],filter2
    ie the parameters are appended after the filter name using ’=’. As ’,’
    has been reserved already for the list of filters, ’/’ is just an
    example of token separation for now, but that could become part of the
    API to avoid each bsf using its own tokenization.

    The proper solution would be using AVOption, but this is overkill for now.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] doc/bitstream_filters.texi
    • [DH] ffmpeg.c
    • [DH] ffmpeg.h
    • [DH] ffmpeg_opt.c
  • How to use output of FFMPEG as command line argument to an executable

    22 février 2017, par pku

    I have a .wmv file which I want to convert to .wav file and I am using ffmpeg for the same, the command is as follows :

    ffmpeg -i file.wmv -ar 8000 -sample_fmt s16 -f wav pipe:1

    the pipe:1 outputs the output wave file in STDOUT. I want to capture that wave file from STDOUT and pass it as a command line argument to my executable called foo. I want to do the conversion from wmv to wav on the fly rather than saving the .wav file.
    Things I have tried are as follows but none of them seem to work :

    ./foo $(ffmpeg -i file.wmv -ar 8000 -sample_fmt s16 -f wav pipe:1)

    ./foo $(&lt;(ffmpeg -i file.wmv -ar 8000 -sample_fmt s16 -f wav pipe:1))

    ffmpeg -i file.wmv -ar 8000 -sample_fmt s16 -f wav pipe:1 | xargs ./foo

    ffmpeg -i file.wmv -ar 8000 -sample_fmt s16 -f wav - | ./foo -
  • Revision 249366b1ac : vpxenc : Move config check code into its own source files. - Add command line ar

    25 novembre 2013, par Tom Finegan

    Changed Paths :
     Modify /examples.mk


     Modify /vpxenc.c


     Add /warnings.c


     Add /warnings.h



    vpxenc : Move config check code into its own source files.

    - Add command line args that allow display of warnings without prompting
    for user input.
    - Extend warning code to make it somewhat scalable.

    Change-Id : I2bad8f9315f6eed120c2e1bbe0a2a5ede15fbf35