Recherche avancée

Médias (91)

Autres articles (86)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (12147)

  • Scaling overlay to match the background video's width while maintaining aspect ratio

    29 mars 2023, par roku

    I'm trying to achive the effect described in the title. But I can't really figure it out. I made a command which almost does what I want it to do but the overlay is still bigger than the background for some reason beyond my understanding.

    


    For more context, the background video has an aspect ratio of 9:16 and the overlay video is always exactly 950 pixels wide.

    


    Here is my command :

    


    ffmpeg -i gameplay.mp4 -i merged.mp4 -i merged.wav -filter_complex "[0:v]crop=ih*(9/16):ih[backgr];[1:v]scale=-2:-2[ovrl];[backgr][ovrl]overlay=(W-w)/2:(H-h)/2[outv]" -map [outv] -map 2:a -shortest test.mp4


    


    Any help is welcome !

    


  • Best way to convert video from h264 to h265 and copy audio without lose too match quality

    9 mai 2021, par user3449922

    I have some mkv file ripped from blu ray and I like to convert it to h265 with ffmpeg.

    


    I have tried this command :

    


    ffmpeg.exe -i title00.mkv -c:v hevc_nvenc test_2.mkv


    


    and the result seem incredible : original size : 27 GB , output size : 1.6 GB

    


    Francanly I don't expect a similar result that is very strange.

    


    The quality seem similar at the fist look, but I don't belive it.

    


    I ask if there is a better way to preserve the original quality and it is not important if the output size is 4 or 5 GB that is in all cases a excellet result.

    


    I have Nvidia GTX 1060 6GB

    


    Can you suggest me a best way to do it ?

    


  • ffprobe output frame with read_intervals no match given time range

    6 juillet 2016, par scott1028

    I have read ffprobe document at here.

    I don’t know why my first time of the frame is 11.745 seconds, even given "-read_intervals 12%13". (12sec 13sec )

    $ ffprobe -i chrome.webm -show_frames -select_streams v:0 -read_intervals 12%13 -hide_banner -loglevel panic

    [FRAME]
    media_type=video
    stream_index=0
    key_frame=1
    pkt_pts=11745
    pkt_pts_time=11.745000
    pkt_dts=11745
    pkt_dts_time=11.745000
    best_effort_timestamp=11745
    best_effort_timestamp_time=11.745000
    pkt_duration=33
    pkt_duration_time=0.033000
    pkt_pos=717643
    pkt_size=5864
    width=480
    height=270
    pix_fmt=yuv420p
    sample_aspect_ratio=1:1
    pict_type=I
    coded_picture_number=0
    display_picture_number=0
    interlaced_frame=0
    top_field_first=0
    repeat_pict=0
    [/FRAME]
    ...