Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (70)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (9466)

  • Merge commit '34c113335b53d83ed343de49741f0823aa1f8cc6'

    17 janvier 2018, par Mark Thompson
    Merge commit '34c113335b53d83ed343de49741f0823aa1f8cc6'
    

    * commit '34c113335b53d83ed343de49741f0823aa1f8cc6' :
    Add support for H.264 and HEVC hardware encoding for AMD GPUs based on AMF SDK

    Most of this was already present from 9ea6607d294526688ab1b1342cb36ee159683e88,
    this just applies some minor fixups and adds the general documentation.

    Merged-by : Mark Thompson <sw@jkqxz.net>

    • [DH] doc/general.texi
    • [DH] libavcodec/amfenc.c
    • [DH] libavcodec/amfenc_h264.c
    • [DH] libavcodec/amfenc_hevc.c
  • avisynth : Bump minimum required version to interface version 6

    2 avril 2015, par Stephen Hutchinson
    avisynth : Bump minimum required version to interface version 6
    

    The AVSC_API changes in the new headers mean that the 2.6 alphas
    are just as incompatible as 2.5 is.

    Signed-off-by : Diego Biurrun <diego@biurrun.de>

    • [DH] doc/general.texi
    • [DH] libavformat/avisynth.c
  • Large HLS Stream to MP4 Clip using FFMPEG

    6 mars 2021, par Brandon Price

    I'm trying to create a clip from an HLS stream. The HLS stream is 8 hours long and the clip can be hours into the video. At most the clip is going to be 1 minute. Most similar answers on here convert the entire video to an mp4 which will take a very long time. Here's what I have so far :

    &#xA;

    ffmpeg -live_start_index 0 -ss 05:22:19.82667 -i https://example.com/main.m3u8 -t 00:00:55.65625 output.mp4

    &#xA;

    I like this implementation so far because ffmpeg seeks to the desired position in the playlist 5 hours into the video before it starts pulling down segments.

    &#xA;

    The problem with this is that I've noticed oftentimes the first few seconds of video is paused (my guess because ffmpeg sees a keyframe only every 6 seconds). Any help would be much appreciated !

    &#xA;