Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (63)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (4828)

  • How to use ffmpeg to concatenate two videos of different aspect ratios ?

    10 décembre 2012, par sabes

    I have two videos, one 640x480 and one 480x640 and I want to use ffmpeg to concatenate them together, but I want the resulting video to be 640x640 with both of the videos letterboxed. Is there a way to do this ?

  • How to concatenate two videos and crop only one of them by using ffmpeg

    12 septembre 2013, par Tetsu

    I want to concatenate two videos.
    First video size is 720x420, and I want to crop 8px each side.
    Second Video size is 704x420, and I don't need to crop.

    And I want to resize the video 640x360 with encoding.

    How can I do it ? If both videos should be cropped, I can easily concatenate the videos like this.

    ffmpeg -i input1.avi -i input2.avi -filter_complex "concat=n=2:v=1:a=0, crop=704:420:8:0" -s 640x360 -vb 900k -an video.mp4

    How can I crop only one of the two videos ?

  • GPU produces laggy videos with ffmpeg [closed]

    10 août 2023, par Salah M. Wahsh

    I wrote a Powershell script to batch edited many videos. but the gpu renders the videos very laggy.

    


    so I'm trying to batch trim and downsize multiple videos using ffmpeg, it works perfectly when it utilizes the CPU. The problem is the CPU is slow when rendering the videos. So, after I utilized the GPU, the rendering time went down significantly which is great, but all the videos are very laggy for some reason. Anyone faced this issue before ?
My GPU is GTX 1050 3gb, I know it's considered a lower end GPU, but it's weird that it renders all the videos very fast so I recon the GPU don't struggle that much.

    


    this is the powershell script I'm using

    


    `New-Item -Path 'EDITED' -ItemType Directory

foreach ($file in Get-ChildItem -Filter *.mp4) {
    ffmpeg -hwaccel cuvid -c:v h264_cuvid -ss 00:00:00 -i $file.FullName -t 00:00:11 -c:v h264_nvenc -c:a copy -vcodec h264_nvenc -qp 23 ("EDITED/" + $file.Name)
}`