Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (102)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

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

  • How to record audio with ffmpeg on linux ?

    2 décembre 2020, par Conor Patrick

    I'd like to record audio from my microphone. My OS is ubuntu. I've tried the following and got errors

    



    $ ffmpeg -f alsa -ac 2 -i hw:1,0 -itsoffset 00:00:00.5 -f video4linux2 -s 320x240 -r 25 /dev/video0 out.mpg

ffmpeg version 0.8.8-4:0.8.8-0ubuntu0.12.04.1, Copyright (c) 2000-2013 the Libav
developers
  built on Oct 22 2013 12:31:55 with gcc 4.6.3
*** THIS PROGRAM IS DEPRECATED ***
This program is only provided for compatibility and will be removed in a future release.
Please use avconv instead.
ALSA lib conf.c:3314:(snd_config_hooks_call) Cannot open shared library
libasound_module_conf_pulse.so
ALSA lib pcm.c:2217:(snd_pcm_open_noupdate) Unknown PCM hw:1,0
[alsa @ 0xbda7a0] cannot open audio device hw:1,0 (No such file or directory)
hw:1,0: Input/output error


    



    Then I tried

    



    $ ffmpeg -f oss -i /dev/dsp audio.mp3

ffmpeg version 0.8.8-4:0.8.8-0ubuntu0.12.04.1, Copyright (c) 2000-2013 the Libav
developers
built on Oct 22 2013 12:31:55 with gcc 4.6.3
*** THIS PROGRAM IS DEPRECATED ***
This program is only provided for compatibility and will be removed in a future release.
Please use avconv instead.
[oss @ 0x1ba57a0] /dev/dsp: No such file or directory
/dev/dsp: Input/output error


    



    I haven't been able to get ffmpeg to find my microphone. How can I tell ffmpeg to record from my microphone ?
    
It seems the 'Deprecated' message can be ignored because of this topic

    


  • Record Sound on Ubuntu Docker Image

    21 avril 2020, par Daniel Rasmuson

    I would like record audio with ffmpeg when I capture my screen. The error I'm getting when using alsa is that is that my image does not have a sound card -f alsa -ac 2 -i hw:0

    



    Here is how to reproduce on a fresh version of Ubuntu

    



    Start a session in a new ubuntu docker image.

    



    docker pull ubuntu
docker run -it --rm ubuntu


    



    Setup alsa (Advanced Linux Sound Architecture)

    



    apt-get update
apt-get install alsa-utils


    



    List the sound cards

    



    aplay -l
# aplay: device_list:268: no soundcards found...


    



    And playing this sound will fail because this image doesn't have any sound cards

    



    sudo aplay /usr/share/sounds/alsa/Front_Center.wav


    


  • avformat/matroskadec : Remove redundant setting of chapter titles

    13 avril 2020, par Andreas Rheinhardt
    avformat/matroskadec : Remove redundant setting of chapter titles
    

    Chapter titles are added to the chapter's metadata since 6cb6e159,
    yet since 012867f0 (the predecessor of) avpriv_new_chapter() already
    adds the title to the chapter's metadata. So setting it again in
    matroskadec.c is redundant and expensive.

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

    • [DH] libavformat/matroskadec.c