Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (37)

  • Les notifications de la ferme

    1er décembre 2010, par

    Afin d’assurer une gestion correcte de la ferme, il est nécessaire de notifier plusieurs choses lors d’actions spécifiques à la fois à l’utilisateur mais également à l’ensemble des administrateurs de la ferme.
    Les notifications de changement de statut
    Lors d’un changement de statut d’une instance, l’ensemble des administrateurs de la ferme doivent être notifiés de cette modification ainsi que l’utilisateur administrateur de l’instance.
    À la demande d’un canal
    Passage au statut "publie"
    Passage au (...)

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

  • FFmpeg - Turn a 1280x720 video into 720x1280 video and add blur

    6 janvier 2021, par offish

    I've searched around and found multiple solutions. I've found one that works well, but the final video ends up being too big which makes the rendering slow.

    


    I'm giving it a 1280x720 video and want it to turn out like shown here with 720x1280 as the resolution.

    


    -lavfi "[0:v]scale=256/81*iw:256/81*ih,boxblur=luma_radius=min(h\,w)/40:luma_power=3:chroma_radius=min(cw\,ch)/40:chroma_power=1[bg];[bg][0:v]overlay=(W-w)/2:(H-h)/2,setsar=1,crop=w=iw*81/256"


    


    This video ends up being 1280x2274 instead of 720x1280, everything else is fine except the speed and resolution.

    


    -lavfi [0:v]scale=16/9*iw:16/9*ih,boxblur=luma_radius=min(h\,w)/40:luma_power=3:chroma_radius=min(cw\,ch)/40:chroma_power=1[bg];[bg][0:v]overlay=(W-w)/2:(H-h)/2,setsar=1,crop=w=720:h=1280


    


    This cuts the original video, but ends up being 720x1280, faster than the first solution.

    


    -lavfi "[0:v]scale=256/81*iw:256/81*ih,boxblur=luma_radius=min(h\,w)/40:luma_power=3:chroma_radius=min(cw\,ch)/40:chroma_power=1[bg];[bg][0:v]overlay=(W-w)/2:(H-h)/2,setsar=1,crop=w=iw*81/256,scale=720:1280"


    


    This is the same as the first one, but it gets scaled again. It has the correct resolution, but is way to slow for my liking (only about 3.6 it/s, when I've tried other solutions which fluctuates around 35 it/s).

    


    I guess my scaling is wrong, but I don't understand what I should multiply and divide by, to get the result I'm looking for.

    


    Thanks.

    


  • ffmpeg - how can I make a video out of video given a list of frames ?

    28 avril 2020, par Adam Gosztolai

    I have a list of frames frames = [23, 25, 26, 27, 28, 345, 346, 347] and a video file input.mp4 recorded at 100 fps.

    



    Could someone show me how to make a video output.mp4 taking only frames from frames ?

    


  • How can I cut a video to a certain length and add an intro video to it using ffmpeg-python ?

    3 septembre 2021, par kup

    How can I cut a video to a certain length and add an intro video to it using ffmpeg-python ?

    


    I am doing this :

    


    intro = ffmpeg.input(intro)
mainvid = ffmpeg.input(mainvid)

v1 = intro.video
a1 = intro.audio
v2 = mainvid.video
a2 = mainvid.audio

joined = ffmpeg.concat(v1, a1, v2, a2, v=1, a=1).node
v3 = joined[0]
a3 = joined[1]

(
    ffmpeg
    .output(
        v3,
        a3,
        'out.mkv',
        vcodec='libx265', )
    .run()
)


    


    But I don’t know how to cut *mainvid to a certain length like 10 minutes before joining. I know ss will help, but I don’t know how to use it for only mainvid.