Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (76)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (7776)

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

    


  • How to mix/merge/combine an image file into a video file in android prorammatically

    31 août 2016, par RedFlow

    I want make an app to mix an image with a video and put it as foreground into the video.
    How can I do this ?