Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (111)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (4949)

  • avfft : avoid overreads with RDFT API users

    9 février 2024, par Lynne
    avfft : avoid overreads with RDFT API users
    

    The new API requires an extra array member at the very end,
    which old API users did not do.

    This disables in-place RDFT transforms and instead
    does the transform out of place by copying once, there shouldn't
    be a significant loss of speed as our in-place FFT requires a reorder
    which is likely more expensive in the majority of cases to do.

    • [DH] libavcodec/avfft.c
  • Get audio (M4A or MP3) file links directly from YouTube

    10 mars 2018, par Alex

    I am developing a PHP script that obtains video download links from YouTube. The ones I am grabbing are MP4 (720p) and MP4 (360p) (no-DASH format).

    My script is similar to this PHP class : https://github.com/Athlon1600/youtube-downloader

    It allows me to download any YouTube video that I want, no matter if it has copyright or not. It handles everything with signature ciphering and deciphering included.

    However, apart from videos, I would like to obtain audio download links from YouTube videos as well, either in MP3 or M4A.

    (M4A files are provided by YouTube, but they are in DASH format, which means, it’s not a complete file, but a collection of files that need to be merged together)

    Is there a way to obtain MP3 audio download links directly from YouTube ?

    I would like to avoid using FFMPEG library as it requires a lot of resources.

    In the case that using a library like that is the only option, what’s the most optimal way to convert MP4 files to MP3 files ?

    Is there any more efficient alternative than FFMPEG ?

    PLEASE avoid comments regarding YouTube TOS

  • Downloading, transcoding, then streaming on the fly with VLC

    12 avril 2012, par Alexis K

    I need to download a file from a web service the immediatley extract the audio, then transcode it, then stream it out.

    When I use :

    vlc.exe URL :sout=#transcode{acodec=mp3,ab=128,channels=2,samplerate=44100}:http{dst=:8080/audio.mp3}

    it is really choppy when I listen to it on the other computer. What is strange also is that for some YouTube links, the above works well, but for others it dosen't work well. I am not sure why this is.

    However, when I download the audio first, then stream it out, like this
    vlc.exe "song.mp3" :sout=#transcode{acodec=mp3,ab=128,channels=2,samplerate=44100}:http{dst=:8080/audio.mp3}

    it works well. The issue is I can't always download the song before hand (long pod casts or internet radio...).

    Is there a command or VLC optimization that I can use to help remedy this situation ? Or another program that would be good ?