Recherche avancée

Médias (0)

Mot : - Tags -/configuration

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

Autres articles (49)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (5820)

  • Extract audio stream of a .ts file onto a different format

    7 juin 2019, par Skyleft

    I have a .ts audio file and I want to convert it to a .wav file without losing quality.

    This is what I have tried :

    ffmpeg -i audio.ts -vn -acodec copy audio.wav

    This does return a .wav file, but I’m not sure if what I’m doing is optimal or if there’s anything I can do to end up with a file of better quality. Unfortunately there are many formats such as .aac that I can’t work with.

    Lastly, although this returns a .wav file, it is pretty buggy. It won’t play with the windows player, and the only way to listen to it will be by dragging it onto a browser. If I try to advance the audio it will cut off immediately, and it will also not replay unless I refresh the page.
    I’m assuming these problems have to do with the way I’m converting it, but I don’t know how to avoid them.

    Thank you.

  • Appending two audiofiles React Native

    21 octobre 2020, par R. Adang

    I want to combine to wav files into one file. So file1 + file2 = file3.
I am currently looking into ffmpeg, but when I try to use concat it only returns a file with the length of the first file. The react native code that I use is :

    



    RNFFmpeg.execute('-i "concat:' + path1 + '|' + pathOutput + '" -acodec copy ' + pathOutput2).then(result => console.log("FFmpeg process exited with rc " + result.rc)); 


    



    Is my command wrong ?

    



    If you have a better solution for this please let me know !

    


  • finding the bitrate value of mkv file

    11 juillet 2022, par david

    I am trying to find the bitrate value of a video using ffprobe as follows :

    


    ffprobe -i sample_5.mkv -v quiet -show_entries stream=bit_rate -hide_banner -of default=noprint_wrappers=1:nokey=1


    


    but all files have Mkv format and this command returns N/A. when I use ffmpeg -i input.mkv in the last line of output the bitrate value is shown. I do not know what is the problem. I need to have the bitrate value of each video. Could you please tell me how can I find it in python ? Thank you.