Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (110)

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

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

Sur d’autres sites (13242)

  • lavu/riscv : add optimisations

    12 septembre 2022, par Rémi Denis-Courmont
    lavu/riscv : add <intmath.h> optimisations
    

    This provides some micro-optimisations for signed integer clipping, and
    support for bit weight with the Zbb extension.

    • [DH] libavutil/intmath.h
    • [DH] libavutil/riscv/intmath.h
  • Why doesn't FFmpeg work when using yt-dlp in python script ?

    11 mai 2022, par spelle

    I'm trying to download a video using yt-dlp in python.

    &#xA;

    ydl_opts = {&#x27;format&#x27;: &#x27;bv&#x2B;ba/b&#x27;}&#xA;with YoutubeDL(ydl_opts) as ydl:&#xA;     ydl.download(&#x27;https://www.reddit.com/r/cats/comments/re37dn/weve_been_feeding_this_stray_for_several_years/&#x27;)&#xA;

    &#xA;

    But I'm reaching an FFmpeg error in the log

    &#xA;

    [generic] 1o8t9ollwx481: Requesting header&#xA;[redirect] Following redirect to https://www.reddit.com/r/cats/comments/re37dn/weve_been_feeding_this_stray_for_several_years/&#xA;[Reddit] re37dn: Downloading JSON metadata&#xA;[Reddit] re37dn: Downloading m3u8 information&#xA;[Reddit] re37dn: Downloading MPD manifest&#xA;[info] 1o8t9ollwx481: Downloading 1 format(s): dash-video_4419291&#x2B;dash-audio_0_133951&#xA;WARNING: You have requested merging of multiple formats but ffmpeg is not installed. The formats won&#x27;t be merged.&#xA;[download] Destination: We’ve been feeding this stray for several years, but she’s lost a lot of weight and I don’t think she would last outside for another winter, so I brought her in. [1o8t9ollwx481].fdash-video_4419291.mp4&#xA;[download] 100% of 5.18MiB in 00:00               &#xA;[download] Destination: We’ve been feeding this stray for several years, but she’s lost a lot of weight and I don’t think she would last outside for another winter, so I brought her in. [1o8t9ollwx481].fdash-audio_0_133951.m4a&#xA;[download] 100% of 161.32KiB in 00:00&#xA;

    &#xA;

    FFmpeg is installed through pip and added in PATH.

    &#xA;

  • FFMPEG command line not using GPU when compressing MP4 file

    13 avril 2022, par StealthRT

    Hey all I have been working on a good command line string to use for my movies that I would like to trim the size down to at least half the current size.

    &#xA;

    My handbrake information regaurding my GPU and computer system is this :

    &#xA;

    HandBrake 1.5.1 (2022011000)&#xA;OS: Microsoft Windows NT 10.0.19043.0&#xA;CPU: Intel(R) Xeon(R) CPU           X5650  @ 2.67GHz (12 Cores, 24 Threads)&#xA;Ram: 40940 MB, &#xA;GPU Information:&#xA;  Microsoft Remote Display Adapter - 10.0.19041.662&#xA;  NVIDIA Tesla K10 - 30.0.14.7141&#xA;  NVIDIA Tesla K10 - 30.0.14.7141&#xA;  Microsoft Basic Display Adapter - 10.0.19041.868&#xA;

    &#xA;

    When I originally made a command line, I was just using it to copy the file over to where it needed to go with the following :

    &#xA;

    &#xA;

    ffmpeg -y -hide_banner -threads 8 -hwaccel cuda -hwaccel_device 1&#xA;-hwaccel_output_format cuda -v verbose -i "c :\testingvids\AEON FLUX 2005.mp4" -c:v h264_cuvid -gpu:v 1 -preset slow -c copy "c :\testingvids\AEON FLUX 2005 nvidia.mp4"

    &#xA;

    &#xA;

    This produced a 828x processing speed :

    &#xA;

    enter image description here

    &#xA;

    But for taking that same file and compressing it I seem to only get a 8x speed ?

    &#xA;

    enter image description here

    &#xA;

    So that is quite a difference there. Am I using the correct syntax for it to only use my GPU to convert/compress the mp4 with the h264 nvenc ?

    &#xA;