Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (31)

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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (4458)

  • Find a resolution (dimension) of a video object saved in S3 - in rails

    27 septembre 2015, par JVK

    I have video files saved in s3 and I want to find the dimension/resolution of any file (lets assume file sizes are in 500mb) per the request comes in my rails app.

    One of the options, I have in my mind is :

    Download (getObject) the file in local memory and use ffmpeg to find the required info. I currently don’t have ffmpeg, as I don’t need that for any task.

    But, I don’t like this option, reason is - I don’t want to waste bandwidth to download it first (takes time) from S3 and then run cpu and memory intensive ffmpeg on my server to merely find the dimension/resolution of the video.

    Is there any better solution ?

    S3 object HEAD call on object unfortunately doesn’t return dimension information.

  • g2m : Relax resolution change constraints

    7 octobre 2015, par Vittorio Giovara
    g2m : Relax resolution change constraints
    

    Do not fail when original resolution is smaller than current one,
    as the frame buffer is resized automatically.

    Signed-off-by : Vittorio Giovara <vittorio.giovara at gmail.com>

    • [DBH] libavcodec/g2meet.c
  • When ffmpeg transcodes, How to use expr to determine video resolution auto set -b:v suitable bit rate

    2 septembre 2022, par SevenFantastic

    I tried to use this code, but ffmpeg doesn't recognize this way of writing

    &#xA;

    ffmpeg -i .\test.MP4 -b:v "expr: if(gte(iw,800), 2000K, 1000K)"  -f mp4 -y output.mp4&#xA;

    &#xA;

    even replace the iw to const 1000, it doesn`t work.

    &#xA;

    ffmpeg -i .\test.MP4 -b:v "expr: if(gte(1000,800), 2000K, 1000K)"  -f mp4 -y output.mp4&#xA;

    &#xA;

    But this way of writing it works fine I'm baffled

    &#xA;

    ffmpeg -i .\test.MP4 -force_key_frames "expr: gte(t,n_forced * 15)" -f mp4 -y output.mp4&#xA;

    &#xA;