Recherche avancée

Médias (1)

Mot : - Tags -/karaoke

Autres articles (95)

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

  • FFmpeg, output AVIF image series instead of animated AVIF

    23 mars, par EntityinArray

    I want to convert a series of huge PNGs into AVIF.

    


    ffmpeg -i 'img (%d).png' -c:v libsvtav1 -s 1280x720 .\lidl\img%d.avif


    


    FFmpeg always outputs an animated AVIF. How to force it to output AVIF image series ?

    


  • Is there way to compile ffmpeg in VS 2019 without (1) installing MSYS, (2) using assembler sources ? [duplicate]

    21 octobre 2023, par Tobic

    I want to compile ffmpeg in VS 2019 without installing additional components such as MSYS and assembler sources.
If I understand correctly, I have to install MSYS to do that and I would like not install it.

    


    Can I do it without MSYS - and if it is real, in what way ?
    
I have downloaded ffmpeg sources and the first step to install it - execute a file .\configure (bash script ?) that comes with ffmpeg.

    


  • Write a function to run through a series of commands, zsh

    8 septembre 2016, par Ali Samii

    I am trying to write a function to run through a series of commands, but I have no idea where to start.

    This is the series of commands I want to run.

    find ./ -name '*.mp4' -exec bash -c 'ffmpeg -i "$0" -vcodec libx264 -vf scale=854:480 -cpu-used 5 -threads 8 "${0%%.mp4}-copy.mp4"' {} \;
    touch -r video.mp4 video-copy.mp4
    rm -rf video.mp4
    mv video-copy.mp4 video.mp4
    find ./ -name '*.mp4' -exec bash -c 'qt-faststart "$0" "${0%%.mp4}-fs.mp4"' {} \;
    touch -r video.mp4 video-fs.mp4
    rm -rf video.mp4
    mv video-fs.mp4 video.mp4
    find ./ -name '*.mp4' -exec bash -c 'ffmpeg -i "$0" -vcodec libvpx -acodec libvorbis -vf scale=-1:480 -cpu-used 5 -threads 8 "${0%%.mp4}.webm"' {} \;
    touch -r video.mp4 video.webm
    find ./ -name '*.mp4' -exec bash -c 'ffmpeg -i "$0" -ss 00:00:10 -vframes 1 -r 1 -vf scale=-1:480 -f image2 "${0%%.mp4}.jpg"' {} \;
    touch -r video.mp4 video.jpg
    mv video.jpg thumbnail.jpg

    Can someone help me please.