Recherche avancée

Médias (0)

Mot : - Tags -/albums

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

Autres articles (51)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (5167)

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