Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (31)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (4852)

  • youtube-dl download one minute per every 5 minutes (on a twitch video, but i have the local file saved too if easier)

    18 mai 2016, par babadoctor

    I would like to do what the title says

    This is a ffmpeg command to download from a specific time in a video, offline or online.

    ffmpeg -ss (stop time) -i (direct video link) -t (start time) -c:v copy -c:a copy (title.mp4)

    I am going to be downloading this on OSX.
    I dont care what the title is.

    I think* there is a bash command that allows me to change the timings in this command up by a specific amount (+300 seconds per, the counter for start and stop time is in raw seconds)

    So, bash script that runs that command but increases the start and stop times incrementally by 300 (the stop timing being 60+ seconds ahead), downloads, then repeats.

  • avcodec/rkmppdec : Fix double-free on error

    24 septembre 2023, par Andreas Rheinhardt
    avcodec/rkmppdec : Fix double-free on error
    

    After having created the AVBuffer that is put into frame->buf[0],
    ownership of several objects (namely an AVDRMFrameDescriptor,
    an MppFrame and some AVBufferRefs framecontextref and decoder_ref)
    has passed to the AVBuffer and therefore to the frame.
    Yet it has nevertheless been freed manually on error
    afterwards, which would lead to a double-free as soon
    as the AVFrame is unreferenced.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/rkmppdec.c
  • hwcontext_vulkan : rewrite upload/download

    18 juillet 2024, par Lynne
    hwcontext_vulkan : rewrite upload/download
    

    This commit was long overdue. The old transfer dubiously tried to
    merge as much code as possible, and had very little in the way
    of optimizations, apart from basic host-mapping.

    The new code uses buffer pools for any temporary bufflers, and
    handles falling back to buffer-based uploads if host-mapping fails.

    Roundtrip performance difference :
    ffmpeg -init_hw_device "vulkan=vk:0,debug=0,disable_multiplane=1" -f lavfi \
    - i color=red:s=3840x2160 -vf hwupload,hwdownload,format=yuv420p -f null -

    7900XTX :
    Before : 224fps
    After : 502fps

    Ada, with proprietary drivers :
    Before : 29fps
    After : 54fps

    Alder Lake :
    Before : 85fps
    After : 108fps

    With the host-mapping codepath disabled :
    Before : 32fps
    After : 51fps

    • [DH] libavutil/hwcontext_vulkan.c
    • [DH] libavutil/vulkan.c