Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (102)

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

  • 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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (11383)

  • Use ffmpeg to produce movie with hevc codec and alpha playable in QuickTime

    6 janvier 2021, par 220284

    I want to produce a movie from a sequence of PNG images using ffmpeg. The resulting movie should be QuickTime compatible and is supposed to use the hevc codec with an alpha channel. Can this be done using ffmpeg ? I tried

    


    ffmpeg -framerate 60 -i %d.png -c:v libx265 -pix_fmt yuv420p -x265-params lossless=1 -tag:v hvc1 out.mov


    


    but the resulting movie has no alpha channel.

    


  • How to download .m3u8 parts separately ?

    21 mars 2023, par Jon Freynik

    My google skills are failing me this morning - I can only seem to find how to download the full .m3u8 listings file.

    


    Using the following ffmpeg command works to download and concat all the video files into 1.

    


    ffmpeg -i "http://example.com/chunklist.m3u8" -codec copy file.ts

    


    Is there a similar command to download each chunk separately ? - So the resulting files would be : chunk1.ts, chunk2.ts, etc.

    


  • How to record/download m3u steam video from url using FFMPEG

    14 juin 2019, par gaurav gajjar

    I am trying to download video from m3u live stream but there is some part of video download

    in this m3u8 url return segments and this segments merge and give video but video length is like one request response segments , i am try to download steam url but only 15 sec video will download.

    how to continue download m3u8 using FFMPEG

    URL i will try to download or record

    http://cshms3.airtel.tv/PLTV/88888888/224/3221226049/index.m3u8

    String[] command = { "-y", "-i", INPUT_FILE,  "-vcodec", "mpeg4", "-b:v", "2097152", "-b:a", "48000", "-ac", "2", "-ar", "22050", dir.toString() + "/yourvideoname1.mp4"};