Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (42)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

Sur d’autres sites (10974)

  • How do I use FFMPEG to scene detect and split a clip at each cut ?

    31 août 2015, par Brendan Luu

    I want to take an edited video and split it into a sequence at each cut. I figured out how to use scene detection with FFMPEG and have the correct timestamps for when scenes change but I would like to use the .txt or .csv to split the full video into individual clips. Can this be done ? If it’s possible, how can I do it ?

    The command I used to get the scene detection is ffprobe -show_frames -of compact=p=0 -f lavfi "movie=MOVIEFILENAME,select=gt(scene\,.4)" > MOVIEFILENAME.csv

  • ffmpeg - where to save the video I plan to cut to frames

    28 décembre 2017, par Kyle

    I have ffmpeg up and running on my computer.

    Now I am trying to cut a video into individual frames. The video is titled IMG_2299.MOV.

    I am using the following command :

    ffmpeg -i img_2299.mov $filename%12d.jpeg

    Two questions :
    1) where do I need the actual video saved for this to work ? In the same folder as the ff* executable files (/usr/loca/bin) ?
    2) And where will the images created be saved ?

    I can run the command above — but I don’t see any results.

    Thank you for any help you can offer.

  • Volume Detect on half second window sizes [duplicate]

    14 juin 2021, par user82395214

    How can I get the max volume of individual slices of a video using FFMpeg ?

    


    Using this command, you can obtain the max volume for the whole clip :

    


    ffmpeg -i video.avi -af "volumedetect" -vn -sn -dn -f null /dev/null

    


    However, I want the max volume for every half second window in the audio file. How can I achieve this with ffmpeg ?