Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

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

Autres articles (24)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

Sur d’autres sites (5453)

  • avcodec/nvenc : split large functions into smaller ones

    20 mai 2016, par Andrey Turkin
    avcodec/nvenc : split large functions into smaller ones
    

    Functions names and scopes are from libav. This commit basically moves
    code around without changing it ; it shouldn’t change any functionality
    except some small leak fixes on error paths.

    Signed-off-by : Timo Rothenpieler <timo@rothenpieler.org>

    • [DH] libavcodec/nvenc.c
  • lavfi/vf_libplacebo : split and refactor logic

    5 mai 2023, par Niklas Haas
    lavfi/vf_libplacebo : split and refactor logic
    

    This commit contains no functional change. The goal is merely to
    separate the highly intertwined `filter_frame` and `process_frames`
    functions into their separate concerns, specifically to separate frame
    uploading (which is now done directly in `filter_frame`) from emitting a
    frame (which is now done by a dedicated function `output_frame`).

    The overall idea here is to be able to ultimately call `output_frame`
    multiple times, to e.g. emit several output frames for a single input
    frame.

    • [DH] libavfilter/vf_libplacebo.c
  • How to input an audio file, generate video, split, crop and overlay to output a kaleidoscope effect

    29 septembre 2017, par wrrkkksstffrrg

    I need to create an FFMPEG script which reads in an audio file ("testloop.wav" in this example) generates a video from the waveform using the "showcqt" filter , and then crops and overlays the output from that to generate a kaleidoscope effect. This is the code I have so far - the generation of the intial video and the output section work correctly, but there is a fault in the split, crop and overlay section which I cannot trace.

       ffmpeg -i "testloop.wav" -i "testloop.wav" \
    -filter_complex  "[0:a]showcqt,format=yuv420p[v]" -map "[v]" \
           "split [tmp1][tmp2]; \
           [tmp1] crop=iw:(ih/3)*2:0:0, pad=0:ih+ih/2 [top]; \
           [tmp2] crop=iw:ih/3:0:(ih/3)*2, hflip [bottom]; \
           [top][bottom] overlay=0:(H/3)*2"\
    -map 1:a:0 -codec:v libx264 -crf 21 -bf 2 -flags +cgop -pix_fmt yuv420p -codec:a aac -strict -2 -b:a 384k -r:a 48000 -movflags faststart "${i%.wav}.mp4