Recherche avancée

Médias (91)

Autres articles (17)

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

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

Sur d’autres sites (3651)

  • Fastest seek speed and decoding with ffmpeg and x265 ProRes

    17 mai 2018, par Christopher Jarvis

    I’m trying to optimize seek speed with x265. No matter what encoding settings I try, ProRes still seeks more quickly/gracefully. This makes sense since it was built for editing, but I’m sure there’s got to be something I’m missing to better improve x265.

    So far, -tune fastdecode, keyint=1, maxrate and -b (to remove B Frame calculations) yield the best results, but they’re still unsatisfactory. I’ve been pouring over the docs but there’s so much jargon I just don’t understand. Perhaps another codec like VP9 / WebM would be better for this purpose ?

    From what I can tell, there’s no bottleneck with CPU, read speed or RAM... or GPU for that matter. Monitoring these processes show minimal drain. Is there just an amount of decoding in a highly compressed format like x265 that can’t be circumvented ?

    Thank you in advance for your help.

  • Revision 6a464eca05 : Speed up mode search depending on relative ref frame position This commit enabl

    18 août 2014, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_rdopt.c


     Modify /vp9/encoder/vp9_speed_features.c


     Modify /vp9/encoder/vp9_speed_features.h



    Speed up mode search depending on relative ref frame position

    This commit enables the encoder to record the location of the
    center frame to generate alter reference frame. It then allows to
    skip checking prediction modes of other reference frame types when
    it comes to encode this frame.

    The speed 3 runtime is reduced for the test sequences :
    bus at CIF 1000 kbps, 9791 ms -> 9446 ms, i.e., 3.5% speed-up,
    pedestrian at 1080p 2000 kbps, 184043 ms -> 175730 ms, i.e., 4.5%
    speed-up.

    No compression performance change observed.

    Change-Id : Iacfde3bcc1445964e7a241f239bd6ea11cb94bd1

  • FFMPEG - Speed up video between spesific time ranges

    9 novembre 2022, par muzak

    I want to configure the speed of my videos.

    


      

    • Length of videos can be different than another. Some of them 30, some of them 35 seconds etc.
    • 


    • I know the spesific time ranges for every video to configure speed.
    • 


    


    For example ;

    


      

    • Between 0 and 5 secs -> 1.25x
    • 


    • Between 5 and 12 -> No change
    • 


    • Between 12 and 20 secs -> 1.5x
    • 


    • Between 20 and 30 secs -> 1.25x
    • 


    • Rest of video -> No change
    • 


    


    I have tried these resources :

    


      

    1. Speed up part of video using ffmpeg
    2. 


    3. https://www.reddit.com/r/ffmpeg/comments/dx402k/changing_playback_speed_between_two_times/
    4. 


    


    2nd link seems like a better approach for me but I couldn't make it work. It trims from the end and I can't see the end of video.

    


    My example code :

    


    ffmpeg -i kpl2e.webm -filter_complex \
"[0]trim=00:5, setpts=(PTS-STARTPTS)*.5[v0]; \
[0]trim=5:12,setpts=(PTS-STARTPTS)*.25[v1]; \
[0]trim=12:20,setpts=(PTS-STARTPTS)*.5[v2]; \
[0]trim=20:30,setpts=(PTS-STARTPTS)*.5[v3]; \
[v0][v1][v2][v3]concat=n=4:v=1[new]" \
-map "[new]" -r 30 output.mp4


    


    Thank you !