Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

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

Autres articles (83)

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

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

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

Sur d’autres sites (8319)

  • ffmpeg : Remove audio from nested folders filled with videos without renaming

    18 novembre 2022, par Maxwell

    I have a dataset that is filled with videos, only the visual component of the videos is useful to me so I would like remove the audio data to save space and hopefully improve load times. How can I accomplish this with ffmpeg ? Furthuremore, the file names must be kept the same. The dataset is ucf101 and is formated in 101 sub-folders full of .avi videos 7gb. I would like to use windows 10 cmd.

    


  • Change quality of long videos using ffmpeg

    10 avril 2021, par Captain_Zaraki

    I am trying to use .webm video as input and to increase quality i am rescaling the video and also converting it to .mp4

    


    It is working for short videos but when i use it on videos above 20 minutes duration my system is kept crashing. is there any solution of this ?

    


    ffmpeg -i input.mp4 -vf scale=1280:720 -preset slow -crf 18 output.mp4


    


  • How do I batch cut videos ? [closed]

    12 février 2024, par EngineerJack

    I've searched for a while on Google, but haven't found a good solution.

    


    I have multiple videos that I want to cut parts from, so I would like to figure out how to batch cut them so I can figure out each video, then cut them all at once.

    


    I assume I'll use the terminal or powershell, and use commands, write down the info for each video in a file (like a script) then call on that file so they process one after another from that script.

    


    I know that I can do this one-by-one with the code below, but I would like to know how to use the following code for multiple videos as I described above.

    


    ffmpeg -i "video.mp4" -ss 00:00:00 -to 00:00:00 -async 1 -strict -2 "cut.mp4"

    


    BUT, a program (preferrably freeware) that isn't a video editor, but one that I can put the "start" and "end" times, then add multiple videos, WOULD be preferred.

    


    Anyone who can help me with this, I'd appreciate it.

    


    I've tried searching for ways to do this using .bat and .ps1 files on Google, but without finding a good solution.