Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (46)

  • 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

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

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (8946)

  • Quickly split videos into parts with ffmpeg

    20 avril 2021, par RewossKy

    I'm doing splitting on FFMPEG. I divide 1.5 hour videos into 30 minutes. I have two ways of partitioning, the first is the method of rendering by recodecing on the top, I do not have any problem in this, but the time is quite long despite the GTX 1660s graphics card and the ryzen5 3500x processor.

    


    At the bottom, the time is short, but the first 3-4 seconds of the second part videos are frozen. Sometimes this causes problems like not reading in video editing programs.

    


    With recodec (slow, no problem)
ffmpeg -i 1.mp4 -vcodec libx264 -crf 30 -ss 00:00:00 -t 00:29:30 s1.mp4
ffmpeg -i 1.mp4 -vcodec libx264 -crf 30 -ss 00:29:31 -t 00:29:30 s2.mp4
ffmpeg -i 1.mp4 -vcodec libx264 -crf 30 -ss 00:59:01 -t 00:29:30 s3.mp4
ffmpeg -i 1.mp4 -vcodec libx264 -crf 30 -ss 01:28:30 -t 00:29:30 s4.mp4

    


    Without recodec (fast but have problem sometimes)
ffmpeg -i 1.mp4 -vcodec copy -ss 00:00:00 -t 00:29:30 s1.mp4
ffmpeg -i 1.mp4 -vcodec copy -ss 00:29:31 -t 00:29:30 s2.mp4
ffmpeg -i 1.mp4 -vcodec copy -ss 00:59:01 -t 00:29:30 s3.mp4
ffmpeg -i 1.mp4 -vcodec copy -ss 01:28:30 -t 00:29:30 s4.mp4

    


  • Ffmpeg : Improve results with h264_nvenc video codec

    7 avril 2024, par Sulli

    I was very happy to discover ffmpeg is compatible with Cuda as using a GPU speeds up my processing time by 10 at least. But I was very sad to discover codec libx264 can’t be used and h264_nvenc is of much poorer quality (my videos are visibly pixelated, to the point I actually don’t see why ffmpeg was made compatible with Cuda in the first place :) ).

    


    I did not tweak my ffmpeg commands at all when I switched from libx264 to h264_nvenc, but maybe there are some parameters I could add to get a better quality ? Even if it leads to longer processing time, I don’t mind trading a bit of that for a better quality. Or maybe another video codec I wouldn’t know about ?

    


    I usually run my scripts on Google Colab if that matters (tesla T4 graphics card, Driver Version : 535.104.05, CUDA Version : 12.2)

    


  • FFMPEG how to synchronize 2 video streams before comparison

    7 mai 2017, par Yang Zhang

    I am trying to write a ffmpeg filter to do some comparison between two video streams, the video stream is come from capture card, but when I try to compare the frames one by one, I found the frames is slightly not synchronize.

    for example :

    This is the first input stream frames order :

    a, b, c, d, e, f, g....

    And This is second :

    c, d, e, f, g....

    when I comparing the frames in the filter, I found that it becomes ’a’ vs ’c’, ’b’ vs ’d’..., it’s not synchronize.

    Does there exists any way to synchronize 2 video streams ?

    thanks in advance !