Recherche avancée

Médias (0)

Mot : - Tags -/signalement

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (53)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (8194)

  • Is it possible to force a key frame 2 seconds after the time of the last key frame by using FFMPEG ?

    13 octobre 2015, par Alexandr

    I know that prev_forced_t returns time of the last forced key frame. But I need something that return time of the last key frame (not forced but any).

    This parameter will work only with forced frames :
    -force_key_frames "expr:gte(t,prev_forced_t+2)"

    I need something like :
    -force_key_frames "expr:gte(t,${LAST_KEY_FRAME_T}+2)"

  • ffmpeg apad filter not creating equal length videos

    29 mai 2021, par user10233170

    I am downloading videos off the internet with youtube-dl and then combining them into one big video with ffmpeg.

    


    The problem is that the end result is always an out of sync video, because the downloaded videos have differently sized audio-/videostreams.

    


    So I used apad to pad all of the videos with silence ffmpeg -i VIDEO -filter_complex "apad" -shortest OUTPUT. This does work and make the discrepancy between video and audio smaller, but there is still a small difference between audio (00:00:17.04) and video (00:00:17.07).

    


    This adds up when combining a lot of videos and leads to the video again being out of sync.

    


    Any input would be appreciated.

    


  • Best language to use for AWS Beanstalk worker, for Watermarking videos

    16 juin 2017, par RAJ CHOURASIA

    I have a requirement such that, for each customer, the video content I have has to be separately watermarked and kept in the cloud. Also, this whole process is to be automated.

    The way I have figured the architecture is that :

    • I would use AWS SQS queue, to update for which Customers, which set of videos have to be watermarked
    • AWS Beanstalk worker would read the queue, pick up the videos from a S3 location, watermark the required videos and save back in a separate S3 location

    Total size of all the videos can be upto 15GB, which takes more than 24hrs to watermark, using "ffmpeg", so I will also require

    • Ability to parallel process, use multiple CPU cores if available
    • Ability to auto scale, when required

    In order to achieve this, what would be the best Language to use, to write the AWS Beanstalk worker logic ?