Recherche avancée

Médias (91)

Autres articles (104)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

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

Sur d’autres sites (7014)

  • Extract keyframe info and byte offset from video ffmpeg/ffprobe

    4 juin 2020, par Ali Hasan

    How can I retrieve each keyframe information from the video using ffmpeg/ffprobe.

    



    I have read a lot stackoverflow questions and answers regarding this but the command only returns the keyframe duration.

    



    I have used this command to extract the keyframe duration

    



    ffprobe -loglevel error -skip_frame nokey -select_streams v:0 -show_entries frame=pkt_pts_time -of csv "/var/www/html/YoutubeTesting/1080p.mp4"


    



    But the info which I need from each keyframe are

    



    1- Byte offset from video byte size

    



    2- Duration of keyframe

    



    Thanks !

    


  • Is there a way to clip the last 30 seconds of a live m3u8 using FFMPEG [duplicate]

    4 décembre 2019, par kittencornball

    This question already has an answer here :

    I’m trying to use ffmpeg to clip high-lights from a live m3u8

    This is what I’m using now -

    ffmpeg -i livestream.m3u8 -t 30 -c copy output.mp4

    It seems to be cutting 30 seconds from when I run it.
    Is there a way to cut 30 seconds before I run it.

  • Argument error while encoding video in rails

    17 février 2017, par CR7

    I am trying to upload video and convert it into mp4. For conversion I am using the gem carrierwave-video. My configuration as same in the question

    I have installed ffmpeg in my system. But when I upload video the following error occurs.

    VideoFailed to transcode with FFmpeg. Check ffmpeg install and verify video is not corrupt or cut short. Original error: ArgumentError

    When I comment the line

    process encode_video: [:mp4]

    in VideoUploader. It works fine, but conversion is not happening. Is there any issue in passing parameters. Please give your valuable answers