Recherche avancée

Médias (91)

Autres articles (27)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (4502)

  • Play m3u8 audio streaming in python without saving audio content

    3 septembre 2021, par AlexMercer

    there is an online radio station and i have a m3u8 url from that like below :

    


    http://example.com/live/playlist.m3u8


    


    I can capture the audio with ffmpeg with this command :

    


    ffmpeg -i "http://example.com/live/playlist.m3u8" -c copy test.aac


    


    I want to play this streaming with in my PyQt app and i don't need to store the content.

    


    But i don't know how to pass the content from ffmpeg to my python app and play that with QMediaPlayer.

    


  • Android FFmpeg cant set quality of image

    24 octobre 2017, par TheOtherguyz4kj

    I am working with FFmpeg on Android, I am trying to extract frames from a video every second. I made this command that works well :

    final String cmd[] = {

               "-i",
               videoPath,
               "-vf",
               "fps=1",
               mediaStorageDir.getAbsolutePath() +
               "out%d.png"
       };

    Now I want to reduce the quality of the extracted frames so I tried this but get the error :

    final String cmd[] = {

               "-i",
               videoPath,
               "-vf",
               "fps=1",
               "-qscale:v 12",
               mediaStorageDir.getAbsolutePath() +
               "out%d.png"
       };

    At least one output file must be specified

    What is the problem ? I have searched online a lot and cant find a solution to the problem, also is there a better way to reduce the quality of my extracted frames ?

    thanks

  • Using FFProbe within a Python script

    25 janvier 2017, par mattp341

    I am fairly new to python, this is my first real project and I have come to a roadblock. What I have here is a .wmv file, I am using FFprobe to extract the duration in seconds from the .wmv file. When I run the following command in the CMD :

    ffprobe -i Video2.wmv -show_entries format=duration -v quiet -of csv="p=0"

    I get successful output.

    However, when I use os.system, like this :

    os.system('ffprobe -i Video2.wmv -show_entries format=duration -v quiet -of csv="p=0"')

    I get the following output :

    'ffprobe' is not recognized as an internal or external command, operable program or batch file.

    This is very confusing and I haven’t been able to find a fix to this exact problem online, any input would be very much appreciated.