Recherche avancée

Médias (0)

Mot : - Tags -/serveur

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

Autres articles (67)

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

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (6116)

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