Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (43)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (4460)

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

    


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

    


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