Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

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

Autres articles (63)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

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

  • How can I play a video from the CLI with no output of video or audio

    1er janvier 2023, par Gary

    I have 1000s of video files and I know some of them are corrupted. I want to be able to detect corrupted files with a bash script, I tried using FFmpeg with error logging :

    


    ffmpeg -v error -i "vid.avi" -f null - 2>"vid.log"


    


    The output doesn't seem to be very useful though, some files which report errors play without any problems. The only way to know for sure seems to be to watch the video to see if there is any corruption or if it crashes the media player.

    


    I would like to be able to automate the "watching" by playing the video from the command line and detecting the corruption or crashing there but I can't find a way to run it without outputting the video and audio.

    


    I have tried FFplay but I can only disable one of the outputs not both :

    


    ffplay -nodisp "vid.avi"
ffplay -vn "vid.avi"


    


    These disable the video :

    


    ffplay -an "vid.avi"


    


    This disables the audio but I can't combine them, when I do I get an error :

    


    Failed to open file 'vid.avi' or configure filtergraph


    


    I have tried using the vlc/cvlv suggestions I have found but none have worked, it still opens a graphical interface just with no controls.

    


    Is there any way to do this ?

    


  • How to add a text containing the dynamic current time of the video into video,when finished catching each frame using ffmpeg ?

    12 septembre 2016, par breakHeart

    How to solve it ? I hope to solve it by using a function, no command. I hope someone can help me ?

  • How to extract video embedded subtitle from a video URL and show in a text widget in flutter ?

    24 mars 2024, par badshah badmas

    I'm using flutter VLC player to play videos in my flutter app. I want to change the subtitle size dynamically in my video. But Flutter VLC player did not provide the function to change subtitle size dynamically. So I would like to extract the subtitle from the video and show it in a text widget instead of VLC player's subtitle. Can someone help me to extract the subtitle from the video URL ? Or any other method to solve this issue ?

    


    I have tried to extract subtitles using ffmpegkit .

    


     await FFmpegKit.executeAsync('-i $url -map 0:s:0 -codec:s srt $outputPath');


    


    This code returns a blank srt file.