Recherche avancée

Médias (91)

Autres articles (97)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

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

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

Sur d’autres sites (7476)

  • how to encoded a 10bit .tif file into an HDR video by ffmpeg in command line [closed]

    6 juin 2024, par ziyuan

    how can i encoded a RGB 10 bit tif file into a hdr video by ffmpeg ?

    


    and one more question : should the input tiff must be 16bit big- or little- endian ?

    


    i have try the method here : How can I encode RGB images into HDR10 videos in ffmpeg command-line ?
,the same command and setting as the method. However i got this : code 1026 : YUV color family cannot have RGB matrix coefficients

    


    here is the tiff file i have tried :https://drive.google.com/file/d/1G8oYf9-FQJJPNUxwB0_FmlvBaMnUhCVL/view?usp=drive_link

    


    and i found that :
the procedure information it seems like the ffmpeg automatically set the output format as gbrp16le even when i set the -pix_fmt yuv420p10le.

    


  • FFMpeg - Static Blurred Background Image

    21 avril 2020, par John Doe

    I have an ffmpeg command which takes a concat list of images and creates a slideshow, each image slowly zooming out for 10 seconds, then slaps a transparent overlay image ontop and adds music.

    



    This works fine, but I am currently stretching the input images to fit the 1920x1080 resolution. Would it be possible to create a static blurred+stretched background of the image whilst the original image is infront with the zoom effect intact ?

    



    Here's the code :

    



    ffmpeg -y -hide_banner -safe 0 -f concat -i "concat.txt" -i "overlay.png" -i "music.mp3" -filter_complex "[0]scale=3840x2160,zoompan=z='if(lte(zoom,1.0),1.25,max(1.001,zoom-0.0012))':x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)':fps=20:d=200:s=1920x1080[p];[p][1]overlay, drawtext=fontfile=Heathergreen.otf:text=TEXT:fontcolor=black:fontsize=62:x=135:y=940, drawtext=fontfile=voxbox.ttf:text='TEXT':fontcolor=white:fontsize=70:x=120:y=885[outv]" -map "[outv]" -map 2:a -pix_fmt yuv420p -c:v libx264 -x264-params keyint=80:scenecut=0 -c:a aac -aspect 16:9 -preset veryfast -shortest -movflags faststart -fflags genpts -r 20 "output.mp4"


    



    Here's the effect I need, but with the front image zooming out, as in the code above.
blurred background effect

    



    I've had success using -filter_complex "[0]scale=-1:1080[in];[0]scale=1920:1080,boxblur=10:10,setsar=1[bg];[bg][in]overlay=(W-w)/2:(H-h)/2" for similar jobs but I can't seem to integrate it with this code. I'd really appreciate some help here.

    



    Thanks.

    


  • FFmpeg compiling error(libavfilter/vf_scale_cuda.cu)

    11 août 2021, par Amir Mousavi

    installed packages :

    


    


    libx264 - cuda11.2 - cuda-toolkit - nvidia-driver-465

    


    


    command :

    


    ./configure —enable-nonfree —enable-cuvid —enable-nvenc —enable-cuda-nvcc —enable-libx264 —enable-gpl —extra-cflags=-I/usr/local/cuda/include —extra-ldflags=-L/usr/local/cuda/lib64

    


    here is latest lines errors :

    


    


    libavfilter/vf_scale_cuda.cu(1123) : error : a template argument may not reference a non-external entity

    


    libavfilter/vf_scale_cuda.cu(1123) : error : a template argument may not reference a non-external entity

    


    libavfilter/vf_scale_cuda.cu(1124) : error : a template argument may not reference a non-external entity

    


    libavfilter/vf_scale_cuda.cu(1124) : error : a template argument may not reference a non-external entity

    


    libavfilter/vf_scale_cuda.cu(1124) : error : a template argument may not reference a non-external entity

    


    libavfilter/vf_scale_cuda.cu(1124) : error : a template argument may not reference a non-external entity

    


    Error limit reached.
100 errors detected in the compilation of >"/tmp/tmpxft_000032a1_00000000-7_vf_scale_cuda.cpp1.ii".
Compilation terminated.
ffbuild/common.mak:108 : recipe for target >'libavfilter/vf_scale_cuda.ptx' failed
make : *** [libavfilter/vf_scale_cuda.ptx] Error 4
make : *** Waiting for unfinished jobs....

    


    


    I don't know where is the problem.

    


    lines that error referenced :

    


    EAREST_KERNELS(yuv420p)
NEAREST_KERNELS(nv12)
NEAREST_KERNELS(yuv444p)
NEAREST_KERNELS(p010le)
NEAREST_KERNELS(p016le)
NEAREST_KERNELS(yuv444p16le)