Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (48)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (6481)

  • Download hls stream without losing quality

    1er mars 2018, par Sinan Güler

    I tried using -i "input.m3u8" -codec:v copy -codec:a copy output.mp4
    The hls stream is in ts.

    I don’t think I’m getting the best quality, sometimes the video lags for a sec or two, audio is intact anyway.

    Am I using the right command line ?

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

  • 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