Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (71)

  • L’espace de configuration de MediaSPIP

    29 novembre 2010, par

    L’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
    Il permet de configurer finement votre site.
    La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)

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

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (9569)

  • Converting WAV chunks to HLS streamable format by FFmpeg is adding extra audio bytes

    7 février 2023, par Aman Bansal

    I have a stream of live audio bytes. I'm converting these 1 secoond length of audio bytes into wav file then converting it to TS segments using FFmpeg for live stream. While converting audio bytes to wav file, I'm getting audio length of 1s but while converting wav to TS, I'm getting TS segments length of 1.128s beacause of this my live stream is having silence in between the segments.

    


    I'm using FFmpeg builder to convert it

    


    FFmpegBuilder builder = new FFmpegBuilder()
                .setInput(inputWavFileName)
                .addOutput(audioFolderPath + "/output.m3u8")
                .addExtraArgs("-b:a", "128k")
                .addExtraArgs("-f", "hls")
                .addExtraArgs("-hls_time","5")
                .addExtraArgs("-hls_playlist_type", "event")
                .addExtraArgs("-hls_flags", "append_list")
                .done();
        executor.createJob(builder).run();


    


    I also tried converting single wav chunk of 1s by FFmpeg command and got same issue

    


    ffmpeg -i input.wav -c:a aac -b:a 128k -f hls -hls_time 5 output.m3u8


    


  • ffmpeg converting PCM data file to wav file getting distorted(noisy) data

    3 janvier 2015, par Mahendra

    I have raw pcm data in following form :

    0000 0000 0000 0000 0000 0000 0000 0000
    0000 0000 0000 0000 0000 0000 0000 0000
    0000 0000 0000 0000 0000 0000 0000 0000
    0000 0000 0000 0000 0000 0000 0000 0100
    0000 0000 0000 0000 0000 0000 0000 0000
    0000 0100 0100 0000 0000 efbf bdef bfbd
    0000 efbf bdef bfbd efbf bdef bfbd efbf
    bdef bfbd efbf bdef bfbd efbf bdef bfbd
    efbf bdef bfbd efbf bdef bfbd 0000 efbf
    bdef bfbd 0000 efbf bdef bfbd efbf bdef
    bfbd 2900 efbf bdef bfbd 0000 efbf bdef
    bfbd efbf bdef bfbd efbf bdef bfbd 0000

    and I want to make this data in wav file when I am converting by ffmpeg getting noisy data by this command :

    sox -V -t raw -b 16 -e signed -r 16000 -c 1 14_32_7_187.pcm  new.wav

    and :

    ffmpeg -f s16le -ar 16000 -ac 1 -i 14_32_7_187.pcm -ar 16000 -ac 1 oout.wav

    using both getting noisy data.

  • Added handle_form_data method to ease handling of form data.

    1er mai 2012, par Sebastian Tschan

    m server/php/upload.class.php Added handle_form_data method to ease handling of form data. Added index as parameter passed to the handle_file_upload method. Refactored the file upload validation.