Recherche avancée

Médias (91)

Autres articles (53)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • L’utiliser, en parler, le critiquer

    10 avril 2011

    La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
    Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
    Une liste de discussion est disponible pour tout échange entre utilisateurs.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (9612)

  • Windows Ffmpeg - send audio to sound card's output

    30 mars 2021, par halitsafa

    I have a sound card (Behringer UMC202HD) which connected to a Windows 10 computer by usb cable, i am able to recieve audio from input device with the following ffmpeg command :
ffmpeg -f dshow -i audio="IN 1-2 (BEHRINGER UMC 202HD 192k)" -map_channel 0.0.0 -c:a pcm_s24le first_channel.wav -map_channel 0.0.1 -c:a pcm_s24le second_channel.wav

    


    But i can't send audio to sound card's output with the ffmpeg, is there any way to do this ? if there is, how can i do it ?

    


    Linux version (pseudo command) of what i'm trying to do in Windows :

    


    ffmpeg -i my_input.wav -f alsa alsa.behringer_out

    


  • Compiling ffmpeg (-3.0) on windows 7 with nvenc

    21 février 2016, par aviyaChe

    I’m trying to compile ffmpeg (version 3.0) with the following configuration :

    ./configure --prefix=ffmpeg/ --disable-yasm --enable-nonfree --enable-nvenc

    But I get the following error :

    ERROR: nvEncodeAPI.h not found.

    I download the latest Nvidia video SDK (version 6.0.1), but I don’t know where to copy the nvEncodeAPI.h file.

    I have the following set up :

    • windows 7 64 bit
    • cygwin64 terminal
    • Nvidia Quadro k4200, with driver 361.91
  • Using && in Windows FileAssociation Action Commandline

    31 août 2017, par GavinBrelstaff

    I can use the && conjunction from within a standard Windows CMD shell to run two commands on the same line as such :

    "C:\Program Files (x86)\ffmpeg\ffmpeg.exe" -i "%1" -write_xing 0 -ac 2 -ar 24000 -ab 48k -id3v2_version 3 -write_id3v1 1 "%1".mp3 && DEL /Q "%1"
    • by which I delete the input file after having successfully converted it into mp3 output file using ffmpeg

    But the same line of code crashes when I insert it in to the appropriate RegEdit location e.g. :

    Windows Registry Editor Version 5.00

    [HKEY_CLASSES_ROOT\Applications\foobar2000.exe\shell\mp3\command]
    @="\"C:\\Program Files (x86)\\ffmpeg\\ffmpeg.exe\" -i \"%1\" -write_xing 0 -ac 2 -ar 24000 -ab 48k -id3v2_version 3 -write_id3v1 1 \"%1\".mp3 && DEL /Q \"%1\" "

    while it worked fine before I added the trailing && clause. You run it by a right click context menu item.

    Is there any way to achieve this preferably without creating additional BAT/CMD files. I tried placing ( ) brackets around the entire line but then it seemed to change scope and no longer find the input file.