Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

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

Autres articles (90)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

Sur d’autres sites (8999)

  • Problem in the audio file created by converting the wav audio file to amr-wb using ffmpeg

    31 juillet 2019, par starlord

    I want to compress the wav audio file for which I am converting it into amr-wb file (not using simple amr because I need better quality audio files).

    For a few audio files there is some noise after conversion (wav file to amr-wb file with 16k Hz sampling rate and 12.65kbits/s bit rate) due to which android music player is crashing while playing these files.

    But if I convert these audio files with sampling rate of 16k Hz and 19.85kbits/s then the audio file is playing on android but increasing the file size by 30-40%.

    What is the reason of this behavior and how to create compressed amr audio file with maximum quality ?

    The command used to create the amr file :

    ffmpeg -i "0.wav"   -acodec libvo_amrwbenc -ar 16000 -ab 12.65k   "0.amr"

    Also is there a tool to check the validity of headers of amr audio file ?

  • How to include vtt file in m3u8 file [closed]

    20 octobre 2020, par Noweh

    I'm trying to include a .VTT file in an already generated m3u8 file.

    


    the translation file is uploaded separately on the server.

    


    I am therefore trying to merge everything live after the upload.

    


    I tried some commands with ffmpeg without success.

    


    My files :

    


      

    • subtitles.vtt
    • 


    • out.m3u8
    • 


    • v0/
    • 


    • v0_index.m3u8
    • 


    • ...
    • 


    


    out.m3u8 contains :

    


    #EXTM3U
#EXT-X-VERSION:3
#EXT-X-STREAM-INF:BANDWIDTH=655600,RESOLUTION=640x360,CODECS="avc1.4d401e,mp4a.40.2"
v0_index.m3u8

#EXT-X-STREAM-INF:BANDWIDTH=1449112,RESOLUTION=842x480,CODECS="avc1.4d401e,mp4a.40.2"
v1_index.m3u8

...


    


    could you help me to merge those files ?

    


    Thanks.

    


  • How to convert a .m4a file to a .wav file on Android using React Native ?

    23 octobre 2022, par aurelien_morel

    I am trying to convert a .m4a file that I record using expo-audio into a .wav file. The goal is then to use it as a blob to send it on a Google Cloud Storage.
I tried to do this using ffmpeg-kit-react-native :

    


    const uri = recording.getURI();
console.log(uri);

if (Platform.OS === 'android') {
    FFmpegKit.execute(`-i ${uri} temp.wav`).then(async (session) => {
    // const returnCode = await session.getReturnCode();
    uri = 'temp.wav';
    });
}

const response = await fetch(uri);
const blob = await response.blob();


    


    but I have no sucess (getting the error) :

    


    TypeError : null is not an object (evaluating 'FFmpegKitReactNativeModule.ffmpegSession')

    


    uri have this form :

    


    file :///data/user/0/host.exp.exponent/cache/ExperienceData/%2540aamorel%252Fvoki/Audio/recording-4038abed-f264-48ca-a0cc-861268190874.m4a

    


    I am not sure if I use the FFmpeg toolkit correctly. Do you know how to make this work ? Or is there a simpler way to do it ?