Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (97)

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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (10486)

  • lavc/vaapi_encode_h265 : Add GPB frame support for hevc_vaapi

    17 mars 2022, par Linjie Fu
    lavc/vaapi_encode_h265 : Add GPB frame support for hevc_vaapi
    

    Use GPB frames to replace regular P/B frames if backend driver does not
    support it.

    - GPB :
    Generalized P and B picture. Regular P/B frames replaced by B
    frames with previous-predict only, L0 == L1. Normal B frames
    still have 2 different ref_lists and allow bi-prediction

    Signed-off-by : Linjie Fu <linjie.fu@intel.com>
    Signed-off-by : Fei Wang <fei.w.wang@intel.com>

    • [DH] libavcodec/vaapi_encode.c
    • [DH] libavcodec/vaapi_encode.h
    • [DH] libavcodec/vaapi_encode_h265.c
  • FFmpeg compiling error(libavfilter/vf_scale_cuda.cu)

    11 août 2021, par Amir Mousavi

    installed packages :

    &#xA;

    &#xA;

    libx264 - cuda11.2 - cuda-toolkit - nvidia-driver-465

    &#xA;

    &#xA;

    command :

    &#xA;

    ./configure —enable-nonfree —enable-cuvid —enable-nvenc —enable-cuda-nvcc —enable-libx264 —enable-gpl —extra-cflags=-I/usr/local/cuda/include —extra-ldflags=-L/usr/local/cuda/lib64

    &#xA;

    here is latest lines errors :

    &#xA;

    &#xA;

    libavfilter/vf_scale_cuda.cu(1123) : error : a template argument may not reference a non-external entity

    &#xA;

    libavfilter/vf_scale_cuda.cu(1123) : error : a template argument may not reference a non-external entity

    &#xA;

    libavfilter/vf_scale_cuda.cu(1124) : error : a template argument may not reference a non-external entity

    &#xA;

    libavfilter/vf_scale_cuda.cu(1124) : error : a template argument may not reference a non-external entity

    &#xA;

    libavfilter/vf_scale_cuda.cu(1124) : error : a template argument may not reference a non-external entity

    &#xA;

    libavfilter/vf_scale_cuda.cu(1124) : error : a template argument may not reference a non-external entity

    &#xA;

    Error limit reached.&#xA;100 errors detected in the compilation of >"/tmp/tmpxft_000032a1_00000000-7_vf_scale_cuda.cpp1.ii".&#xA;Compilation terminated.&#xA;ffbuild/common.mak:108 : recipe for target >'libavfilter/vf_scale_cuda.ptx' failed&#xA;make : *** [libavfilter/vf_scale_cuda.ptx] Error 4&#xA;make : *** Waiting for unfinished jobs....

    &#xA;

    &#xA;

    I don't know where is the problem.

    &#xA;

    lines that error referenced :

    &#xA;

    EAREST_KERNELS(yuv420p)&#xA;NEAREST_KERNELS(nv12)&#xA;NEAREST_KERNELS(yuv444p)&#xA;NEAREST_KERNELS(p010le)&#xA;NEAREST_KERNELS(p016le)&#xA;NEAREST_KERNELS(yuv444p16le)&#xA;

    &#xA;

  • Send tcp audio stream to a virtual audio device ?

    2 juillet 2021, par iegrm

    I'm making project to use my Android phone's mic as a recording device on my PC

    &#xA;

    I can get the audio data of the phone's mic via a tcp localhost connection which routes through usb.

    &#xA;

    With the following command to VLC, I can playback this audio through the default playback device :

    &#xA;

    vlc -Idummy --demux rawaud --network-caching=50 tcp://localhost:28200&#xA;

    &#xA;

    But how to instead send this audio to a virtual audio device so that I can emulate it as a mic device ?

    &#xA;

    I have experimented with this project in the past for creating a loopback driver for recording desktop audio using ffmpeg like so :

    &#xA;

    ffmpeg -f dshow -i audio="CustomLoopbackDevice" out.mp3&#xA;

    &#xA;

    ..which I assume would be somewhat similar for creating a virtual audio device. I'll be checking this opensource project for making a virtual audio device but not concerned about it just yet, for now I'm using a trial version of virtual audio cable for testing.

    &#xA;

    My only real issue at the moment is I'm not sure how to send the recorded audio from the tcp input stream to a virtual audio device.

    &#xA;

    I'm assuming I could use either ffmpeg/vlc to send that tcp stream to the virtual audio device ? But I'm not sure what the command args for it would be.

    &#xA;

    I'm using C# to manage the recording and I found this snippet of code for writing from a file to what I assume is a specific device by ID :

    &#xA;

    WaveStream waveStream = new WaveFileReader("file.wav");&#xA;WaveOut waveOut = new WaveOut();&#xA;waveOut.DeviceNumber = 0;&#xA;WaveOut.Init(waveStream);&#xA;WaveOut.Play();&#xA;

    &#xA;

    But I'm not sure if this would support reading from the tcp stream instead of from file and how to retrieve device number of virtual device.

    &#xA;