Recherche avancée

Médias (0)

Mot : - Tags -/gis

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

Autres articles (96)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (9254)

  • avcodec/parser : fill avctx dimensions if unset

    27 avril 2023, par James Almer
    avcodec/parser : fill avctx dimensions if unset
    

    This allows the usage of codecs in builds that have a parser but no decoders
    for remuxing scenarios with raw sources.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/parser.c
  • How can I split a series of clips from a video and then stitch them together without audio or video gaps ?

    16 avril 2020, par Dr. Cyber Sec

    I'm developing an application where I take a video and (1) split it up into a bunch of 1 second chunks. Then, I need to (2) stitch a subset of those chunks back together, resulting in a slice of the original video.

    &#xA;&#xA;

    For example, let's say I have an original, 10s clip. I split it up into 1s chunks for each second (a clip from 0s to 1s, a clip from 1s to 2s, etc.). I now need to stitch, say, seconds 2-4 together into one video.

    &#xA;&#xA;

    I'm currently attempting both steps using ffmpeg.

    &#xA;&#xA;

    For clip-cutting :

    &#xA;&#xA;

    ffmpeg -ss 33 -i video.ts -t 1 33to34.ts&#xA;

    &#xA;&#xA;

    This should seek to second 33 and output a 1s clip duration, yielding a video clip containing seconds 33-34 of the original video. I noticed that ffmpeg doesn't always seek accurately, so after following the instructions in this post, which says to manually add keyframes to the parts of the video you want to cut, I tried this :

    &#xA;&#xA;

    First, setting the keyframes :

    &#xA;&#xA;

    ffmpeg -i video.ts -force_key_frames 00:00:01.000,00:00:02.000,00:00:03.000,00:00:04.000 out.ts&#xA;

    &#xA;&#xA;

    And then cutting the clips as I did before with the new output clip.

    &#xA;&#xA;

    While this did get the videos to be exactly 1s long each, (which I wanted) there is a small gap (just a slight jitter) in audio when I combine the clips back together. I cannot have this, and am looking for a solution.

    &#xA;&#xA;

    Can anyone help me understand why this is happening and help me find a solution ? Thank you so much in advance.

    &#xA;

  • lavc/qsvenc : fill the padding area

    10 octobre 2022, par Haihao Xiang
    lavc/qsvenc : fill the padding area
    

    qsvenc makes a copy when the input in system memory is not padded as the
    SDK requires, however the padding area is not filled with right data

    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] libavcodec/qsvenc.c