Recherche avancée

Médias (91)

Autres articles (36)

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

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

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

  • How to create a video thumbnail without ffmpeg or HTML5 video canvas ? [duplicate]

    14 mai 2014, par user3631926

    This question already has an answer here :

    I need to create a thumbnail from a video, I have tried the below options but they didn’t work for my case. I am using S3 and CloudFront.

    1. ffmpeg is not supported via my hosting because I am using a shared hosting and I need to upgrade to VPS or dedicated server if I want to use ffmpeg.

    2. I tried taking a screenshot from the video using HTML5 drawImage and toDataURL functions, but it is throwing SecurityError because my video file is located on Amazon CloudFront and my code is hosted somewhere else.

    Is there any other option or a workaround to the second option ? I don’t want to upgrade my server for just the thumbnail issue.

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