User Tools

Site Tools


ubuntu:video:ffmpeg:rotate_videos

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
ubuntu:video:ffmpeg:rotate_videos [2023/06/06 19:20] peterubuntu:video:ffmpeg:rotate_videos [2023/06/13 10:38] (current) – removed peter
Line 1: Line 1:
-====== Ubuntu - Video - ffmpeg - Rotate Videos ====== 
- 
-===== Software Encoding ===== 
- 
-<code bash> 
-ffmpeg -i in.mov -vf "transpose=1" out.mov 
-</code> 
- 
-<WRAP info> 
-**NOTE:**  This will re-encode the audio and video parts. 
- 
-  * You can usually copy the audio without touching it, by using **-c:a copy**. 
-  * To change the video quality, set the bitrate (for example with **-b:v 1M**) or have a look at the H.264 encoding guide if you want VBR options. 
- 
- 
-For the transpose parameter you can pass: 
- 
-  * 0 = 90CounterCLockwise and Vertical Flip (default) 
-  * 1 = 90Clockwise 
-  * 2 = 90CounterClockwise 
-  * 3 = 90Clockwise and Vertical Flip 
- 
-Use **-vf "transpose=2,transpose=2"** for 180 degrees. 
- 
-</WRAP> 
- 
----- 
- 
-If you don't want to re-encode your video AND your player can handle rotation metadata you can just change the rotation in the metadata using ffmpeg: 
- 
-<code bash> 
-ffmpeg -i input.m4v -metadata:s:v rotate="90" -codec copy output.m4v 
-</code> 
- 
-Check the rotate metadata first with: 
- 
-<code bash> 
-ffmpeg -i input.m4v 2>&1 | grep rotate 
-</code> 
- 
----- 
- 
-To rotate the picture clockwise you can use the rotate filter, indicating a positive angle in radians. With 90 degrees equating with PI/2, you can do it like so: 
- 
-<code bash> 
-ffmpeg -i in.mp4 -vf "rotate=PI/2" out.mp4 
-</code> 
- 
-for counter-clockwise the angle must be negative 
- 
-<code bash> 
-ffmpeg -i in.mp4 -vf "rotate=-PI/2" out.mp4 
-</code> 
- 
- 
-It is possible to get finer-grained resolution of radians, because * behaves as multiplication: 
- 
-<code bash> 
-ffmpeg -i in.avi -vf "rotate=-8*PI/40" -q 1 out.avi  
-</code> 
- 
-(slightly less rotation than -PI/4 = -10*PI/40 
- 
- 
----- 
- 
-===== Determine filters supported by ffmpeg ===== 
- 
-Other filters that can be used. 
- 
-<code bash> 
-ffmpeg -filters  
-</code> 
- 
-returns: 
- 
-<code> 
-... 
-Filters: 
-  T.. = Timeline support 
-  .S. = Slice threading 
-  ..C = Command support 
-  A = Audio input/output 
-  V = Video input/output 
-  N = Dynamic number and/or type of input/output 
-  | = Source or sink filter 
- ... abench            A->      Benchmark part of a filtergraph. 
- ... acompressor       A->      Audio compressor. 
- ... acontrast         A->      Simple audio dynamic range compression/expansion filter. 
- ... acopy             A->      Copy the input audio unchanged to the output. 
- ... acue              A->      Delay filtering to match a cue. 
- ... acrossfade        AA->     Cross fade two input audio streams. 
- ... acrossover        A->      Split audio into per-bands streams. 
- ... acrusher          A->      Reduce audio bit resolution. 
- .S. adeclick          A->      Remove impulsive noise from input audio. 
- .S. adeclip           A->      Remove clipping from input audio. 
- T.. adelay            A->      Delay one or more audio channels. 
- ... aderivative       A->      Compute derivative of input audio. 
- ... aecho             A->      Add echoing to the audio. 
- ... aemphasis         A->      Audio emphasis. 
- ... aeval             A->      Filter audio signal according to a specified expression. 
- T.. afade             A->      Fade in/out input audio. 
- TSC afftdn            A->      Denoise audio samples using FFT. 
- ... afftfilt          A->      Apply arbitrary expressions to samples in frequency domain. 
- .S. afir              AA->     Apply Finite Impulse Response filter with supplied coefficients in 2nd stream. 
- ... aformat           A->      Convert the input audio to one of the specified formats. 
- ... agate             A->      Audio gate. 
- .S. aiir              A->      Apply Infinite Impulse Response filter with supplied coefficients. 
- ... aintegral         A->      Compute integral of input audio. 
- ... ainterleave       N->      Temporally interleave audio inputs. 
- ... alimiter          A->      Audio lookahead limiter. 
- TSC allpass           A->      Apply a two-pole all-pass filter. 
- ... aloop             A->      Loop audio samples. 
- ... amerge            N->      Merge two or more audio streams into a single multi-channel stream. 
- T.. ametadata         A->      Manipulate audio frame metadata. 
- ... amix              N->      Audio mixing. 
- ... amultiply         AA->     Multiply two audio streams. 
- ..C anequalizer       A->      Apply high-order audio parametric multi band equalizer. 
- TSC anlmdn            A->      Reduce broadband noise from stream using Non-Local Means. 
- ... anull             A->      Pass the source unchanged to the output. 
- T.. apad              A->      Pad audio with silence. 
- ... aperms            A->      Set permissions for the output audio frame. 
- ... aphaser           A->      Add a phasing effect to the audio. 
- ... apulsator         A->      Audio pulsator. 
- ... arealtime         A->      Slow down filtering to match realtime. 
- ... aresample         A->      Resample audio data. 
- ... areverse          A->      Reverse an audio clip. 
- ... aselect           A->      Select audio frames to pass in output. 
- ... asendcmd          A->      Send commands to filters. 
- ... asetnsamples      A->      Set the number of samples for each output audio frames. 
- ... asetpts           A->      Set PTS for the output audio frame. 
- ... asetrate          A->      Change the sample rate without altering the data. 
- ... asettb            A->      Set timebase for the audio output link. 
- ... ashowinfo         A->      Show textual information for each audio frame. 
- T.. asidedata         A->      Manipulate audio frame side data. 
- T.. asoftclip         A->      Audio Soft Clipper. 
- ... asplit            A->      Pass on the audio input to N audio outputs. 
- ... astats            A->      Show time domain statistics about audio frames. 
- ..C astreamselect     N->      Select audio streams 
- ..C atempo            A->      Adjust audio tempo. 
- ... atrim             A->      Pick one continuous section from the input, drop the rest. 
- ... azmq              A->      Receive commands through ZMQ and broker them to filters. 
- TSC bandpass          A->      Apply a two-pole Butterworth band-pass filter. 
- TSC bandreject        A->      Apply a two-pole Butterworth band-reject filter. 
- TSC bass              A->      Boost or cut lower frequencies. 
- TSC biquad            A->      Apply a biquad IIR filter with the given coefficients. 
- ... bs2b              A->      Bauer stereo-to-binaural filter. 
- ... channelmap        A->      Remap audio channels. 
- ... channelsplit      A->      Split audio into per-channel streams. 
- ... chorus            A->      Add a chorus effect to the audio. 
- ... compand           A->      Compress or expand audio dynamic range. 
- ... compensationdelay A->      Audio Compensation Delay Line. 
- T.. crossfeed         A->      Apply headphone crossfeed filter. 
- ... crystalizer       A->      Simple expand audio dynamic range filter. 
- T.. dcshift           A->      Apply a DC shift to the audio. 
- T.. deesser           A->      Apply de-essing to the audio. 
- ... drmeter           A->      Measure audio dynamic range. 
- T.. dynaudnorm        A->      Dynamic Audio Normalizer. 
- ... earwax            A->      Widen the stereo image. 
- ... ebur128           A->      EBU R128 scanner. 
- TSC equalizer         A->      Apply two-pole peaking equalization (EQ) filter. 
- T.. extrastereo       A->      Increase difference between stereo audio channels. 
- ..C firequalizer      A->      Finite Impulse Response Equalizer. 
- ... flanger           A->      Apply a flanging effect to the audio. 
- ... haas              A->      Apply Haas Stereo Enhancer. 
- ... hdcd              A->      Apply High Definition Compatible Digital (HDCD) decoding. 
- .S. headphone         N->      Apply headphone binaural spatialization with HRTFs in additional streams. 
- TSC highpass          A->      Apply a high-pass filter with 3dB point frequency. 
- TSC highshelf         A->      Apply a high shelf filter. 
- ... join              N->      Join multiple audio streams into multi-channel output. 
- ..C ladspa            N->      Apply LADSPA effect. 
- ... loudnorm          A->      EBU R128 loudness normalization 
- TSC lowpass           A->      Apply a low-pass filter with 3dB point frequency. 
- TSC lowshelf          A->      Apply a low shelf filter. 
- ... lv2               N->      Apply LV2 effect. 
- ... mcompand          A->      Multiband Compress or expand audio dynamic range. 
- ... pan               A->      Remix channels with coefficients (panning). 
- ... replaygain        A->      ReplayGain scanner. 
- ..C rubberband        A->      Apply time-stretching and pitch-shifting. 
- ... sidechaincompress AA->     Sidechain compressor. 
- ... sidechaingate     AA->     Audio sidechain gate. 
- ... silencedetect     A->      Detect silence. 
- ... silenceremove     A->      Remove silence. 
- .S. sofalizer         A->      SOFAlizer (Spatially Oriented Format for Acoustics). 
- ... stereotools       A->      Apply various stereo tools. 
- T.. stereowiden       A->      Apply stereo widening effect. 
- ... superequalizer    A->      Apply 18 band equalization filter. 
- .S. surround          A->      Apply audio surround upmix filter. 
- TSC treble            A->      Boost or cut upper frequencies. 
- ... tremolo           A->      Apply tremolo effect. 
- ... vibrato           A->      Apply vibrato effect. 
- T.C volume            A->      Change input volume. 
- ... volumedetect      A->      Detect audio volume. 
- ... aevalsrc          |->      Generate an audio signal generated by an expression. 
- ... anoisesrc         |->      Generate a noise audio signal. 
- ... anullsrc          |->      Null audio source, return empty audio frames. 
- ... flite             |->      Synthesize voice from text using libflite. 
- ... hilbert           |->      Generate a Hilbert transform FIR coefficients. 
- ... sinc              |->      Generate a sinc kaiser-windowed low-pass, high-pass, band-pass, or band-reject FIR coefficients. 
- ... sine              |->      Generate sine wave audio signal. 
- ... anullsink         A->      Do absolutely nothing with the input audio. 
- ... alphaextract      V->      Extract an alpha channel as a grayscale image component. 
- ... alphamerge        VV->     Copy the luma value of the second input into the alpha channel of the first input. 
- .S. amplify           V->      Amplify changes between successive video frames. 
- ... ass               V->      Render ASS subtitles onto input video using the libass library. 
- TS. atadenoise        V->      Apply an Adaptive Temporal Averaging Denoiser. 
- TS. avgblur           V->      Apply Average Blur filter. 
- T.. bbox              V->      Compute bounding box for each frame. 
- ... bench             V->      Benchmark part of a filtergraph. 
- T.. bitplanenoise     V->      Measure bit plane noise. 
- ... blackdetect       V->      Detect video intervals that are (almost) black. 
- ... blackframe        V->      Detect frames that are (almost) black. 
- TS. blend             VV->     Blend two video frames into each other. 
- TS. bm3d              N->      Block-Matching 3D denoiser. 
- T.. boxblur           V->      Blur the input. 
- TS. bwdif             V->      Deinterlace the input image. 
- TS. chromahold        V->      Turns a certain color range into gray. 
- TS. chromakey         V->      Turns a certain color into transparency. Operates on YUV colors. 
- TS. chromashift       V->      Shift chroma. 
- ... ciescope          V->      Video CIE scope. 
- T.. codecview         V->      Visualize information about some codecs. 
- TS. colorbalance      V->      Adjust the color balance. 
- TS. colorchannelmixer V->      Adjust colors by mixing color channels. 
- TS. colorkey          V->      Turns a certain color into transparency. Operates on RGB colors. 
- TS. colorhold         V->      Turns a certain color range into gray. Operates on RGB colors. 
- TS. colorlevels       V->      Adjust the color levels. 
- TS. colormatrix       V->      Convert color matrix. 
- TS. colorspace        V->      Convert between colorspaces. 
- TS. convolution       V->      Apply convolution filter. 
- TS. convolve          VV->     Convolve first video stream with second video stream. 
- ... copy              V->      Copy the input video unchanged to the output. 
- ... cover_rect        V->      Find and cover a user specified object. 
- ..C crop              V->      Crop the input video. 
- T.. cropdetect        V->      Auto-detect crop size. 
- ... cue               V->      Delay filtering to match a cue. 
- TS. curves            V->      Adjust components curves. 
- .S. datascope         V->      Video data analysis. 
- TS. dctdnoiz          V->      Denoise frames using 2D DCT. 
- TS. deband            V->      Debands video. 
- T.. deblock           V->      Deblock video. 
- ... decimate          N->      Decimate frames (post field matching filter). 
- TS. deconvolve        VV->     Deconvolve first video stream with second video stream. 
- TS. dedot             V->      Reduce cross-luminance and cross-color. 
- TS. deflate           V->      Apply deflate effect. 
- ... deflicker         V->      Remove temporal frame luminance variations. 
- ... deinterlace_vaapi V->      Deinterlacing of VAAPI surfaces 
- ... dejudder          V->      Remove judder produced by pullup. 
- T.. delogo            V->      Remove logo from input video. 
- ... denoise_vaapi     V->      VAAPI VPP for de-noise 
- T.. derain            V->      Apply derain filter to the input. 
- ... deshake           V->      Stabilize shaky video. 
- TS. despill           V->      Despill video. 
- ... detelecine        V->      Apply an inverse telecine pattern. 
- TS. dilation          V->      Apply dilation effect. 
- T.. displace          VVV->    Displace pixels. 
- ... doubleweave       V->      Weave input video fields into double number of frames. 
- T.. drawbox           V->      Draw a colored box on the input video. 
- ... drawgraph         V->      Draw a graph using input video metadata. 
- T.. drawgrid          V->      Draw a colored grid on the input video. 
- T.C drawtext          V->      Draw text on top of video frames using libfreetype library. 
- T.. edgedetect        V->      Detect and draw edge. 
- ... elbg              V->      Apply posterize effect, using the ELBG algorithm. 
- T.. entropy           V->      Measure video frames entropy. 
- T.C eq                V->      Adjust brightness, contrast, gamma, and saturation. 
- TS. erosion           V->      Apply erosion effect. 
- ... extractplanes     V->      Extract planes as grayscale frames. 
- .S. fade              V->      Fade in/out input video. 
- T.. fftdnoiz          V->      Denoise frames using 3D FFT. 
- T.. fftfilt           V->      Apply arbitrary expressions to pixels in frequency domain. 
- ... field             V->      Extract a field from the input video. 
- ... fieldhint         V->      Field matching using hints. 
- ... fieldmatch        N->      Field matching for inverse telecine. 
- T.. fieldorder        V->      Set the field order. 
- T.. fillborders       V->      Fill borders of the input video. 
- ... find_rect         V->      Find a user specified object. 
- T.. floodfill         V->      Fill area with same color with another color. 
- ... format            V->      Convert the input video to one of the specified pixel formats. 
- ... fps               V->      Force constant framerate. 
- ... framepack         VV->     Generate a frame packed stereoscopic video. 
- .S. framerate         V->      Upsamples or downsamples progressive source between specified frame rates. 
- T.. framestep         V->      Select one frame every N frames. 
- ... freezedetect      V->      Detects frozen video input. 
- ... frei0r            V->      Apply a frei0r effect. 
- T.. fspp              V->      Apply Fast Simple Post-processing filter. 
- TS. gblur             V->      Apply Gaussian Blur filter. 
- TS. geq               V->      Apply generic equation to each pixel. 
- T.. gradfun           V->      Debands video quickly using gradients. 
- ... graphmonitor      V->      Show various filtergraph stats. 
- TS. greyedge          V->      Estimates scene illumination by grey edge assumption. 
- TS. haldclut          VV->     Adjust colors using a Hald CLUT. 
- TS. hflip             V->      Horizontally flip the input video. 
- T.. histeq            V->      Apply global color histogram equalization. 
- ... histogram         V->      Compute and draw a histogram. 
- T.. hqdn3d            V->      Apply a High Quality 3D Denoiser. 
- .S. hqx               V->      Scale the input by 2, 3 or 4 using the hq*x magnification algorithm. 
- ... hstack            N->      Stack video inputs horizontally. 
- T.C hue               V->      Adjust the hue and saturation of the input video. 
- ... hwdownload        V->      Download a hardware frame to a normal frame 
- ... hwmap             V->      Map hardware frames 
- ... hwupload          V->      Upload a normal frame to a hardware frame 
- T.. hysteresis        VV->     Grow first stream into second stream by connecting components. 
- ... idet              V->      Interlace detect Filter. 
- T.. il                V->      Deinterleave or interleave fields. 
- TS. inflate           V->      Apply inflate effect. 
- ... interlace         V->      Convert progressive video into interlaced. 
- ... interleave        N->      Temporally interleave video inputs. 
- ... kerndeint         V->      Apply kernel deinterlacing to the input. 
- .S. lagfun            V->      Slowly update darker pixels. 
- .S. lenscorrection    V->      Rectify the image by correcting for lens distortion. 
- TS. limiter           V->      Limit pixels components to the specified range. 
- ... loop              V->      Loop video frames. 
- TS. lumakey           V->      Turns a certain luma into transparency. 
- TS. lut               V->      Compute and apply a lookup table to the RGB/YUV input video. 
- TS. lut1d             V->      Adjust colors using a 1D LUT. 
- TS. lut2              VV->     Compute and apply a lookup table from two video inputs. 
- TS. lut3d             V->      Adjust colors using a 3D LUT. 
- TS. lutrgb            V->      Compute and apply a lookup table to the RGB input video. 
- TS. lutyuv            V->      Compute and apply a lookup table to the YUV input video. 
- TS. maskedclamp       VVV->    Clamp first stream with second stream and third stream. 
- TS. maskedmerge       VVV->    Merge first stream with second stream using third stream as mask. 
- TS. maskfun           V->      Create Mask. 
- ... mcdeint           V->      Apply motion compensating deinterlacing. 
- ... mergeplanes       N->      Merge planes. 
- ... mestimate         V->      Generate motion vectors. 
- T.. metadata          V->      Manipulate video frame metadata. 
- T.. midequalizer      VV->     Apply Midway Equalization. 
- ... minterpolate      V->      Frame rate conversion using Motion Interpolation. 
- .S. mix               N->      Mix video inputs. 
- ... mpdecimate        V->      Remove near-duplicate frames. 
- TS. negate            V->      Negate input video. 
- TS. nlmeans           V->      Non-local means denoiser. 
- T.. nnedi             V->      Apply neural network edge directed interpolation intra-only deinterlacer. 
- ... noformat          V->      Force libavfilter not to use any of the specified pixel formats for the input to the next filter. 
- TS. noise             V->      Add noise. 
- T.. normalize         V->      Normalize RGB video. 
- ... null              V->      Pass the source unchanged to the output. 
- T.. oscilloscope      V->      2D Video Oscilloscope. 
- TSC overlay           VV->     Overlay a video source on top of the input. 
- T.. owdenoise         V->      Denoise using wavelets. 
- ... pad               V->      Pad the input video. 
- ... palettegen        V->      Find the optimal palette for a given stream. 
- ... paletteuse        VV->     Use a palette to downsample an input video stream. 
- ... perms             V->      Set permissions for the output video frame. 
- TS. perspective       V->      Correct the perspective of video. 
- T.. phase             V->      Phase shift fields. 
- ... pixdesctest       V->      Test pixel format definitions. 
- T.. pixscope          V->      Pixel data analysis. 
- T.C pp                V->      Filter video using libpostproc. 
- T.. pp7               V->      Apply Postprocessing 7 filter. 
- TS. premultiply       N->      PreMultiply first stream with first plane of second stream. 
- TS. prewitt           V->      Apply prewitt operator. 
- ... procamp_vaapi     V->      ProcAmp (color balance) adjustments for hue, saturation, brightness, contrast 
- T.. pseudocolor       V->      Make pseudocolored video frames. 
- ... psnr              VV->     Calculate the PSNR between two video streams. 
- ... pullup            V->      Pullup from field sequence to frames. 
- T.. qp                V->      Change video quantization parameters. 
- ... random            V->      Return random frames. 
- T.. readeia608        V->      Read EIA-608 Closed Caption codes from input video and write them to frame metadata. 
- ... readvitc          V->      Read vertical interval timecode and write it to frame metadata. 
- ... realtime          V->      Slow down filtering to match realtime. 
- TS. remap             VVV->    Remap pixels. 
- TS. removegrain       V->      Remove grain. 
- T.. removelogo        V->      Remove a TV logo based on a mask image. 
- ... repeatfields      V->      Hard repeat fields based on MPEG repeat field flag. 
- ... reverse           V->      Reverse a clip. 
- TS. rgbashift         V->      Shift RGBA. 
- TS. roberts           V->      Apply roberts cross operator. 
- TSC rotate            V->      Rotate the input image. 
- T.. sab               V->      Apply shape adaptive blur. 
- ..C scale             V->      Scale the input video size and/or convert the image format. 
- ... scale_vaapi       V->      Scale to/from VAAPI surfaces. 
- ..C scale2ref         VV->VV     Scale the input video size and/or convert the image format to the given reference. 
- ... select            V->      Select video frames to pass in output. 
- TS. selectivecolor    V->      Apply CMYK adjustments to specific color ranges. 
- ... sendcmd           V->      Send commands to filters. 
- ... separatefields    V->      Split input video frames into fields. 
- ... setdar            V->      Set the frame display aspect ratio. 
- ... setfield          V->      Force field for the output video frame. 
- ... setparams         V->      Force field, or color property for the output video frame. 
- ... setpts            V->      Set PTS for the output video frame. 
- ... setrange          V->      Force color range for the output video frame. 
- ... setsar            V->      Set the pixel sample aspect ratio. 
- ... settb             V->      Set timebase for the video output link. 
- ... sharpness_vaapi   V->      VAAPI VPP for sharpness 
- ... showinfo          V->      Show textual information for each video frame. 
- T.. showpalette       V->      Display frame palette. 
- T.. shuffleframes     V->      Shuffle video frames. 
- T.. shuffleplanes     V->      Shuffle video planes. 
- T.. sidedata          V->      Manipulate video frame side data. 
- .S. signalstats       V->      Generate statistics from video analysis. 
- ... signature         N->      Calculate the MPEG-7 video signature 
- T.. smartblur         V->      Blur the input video without impacting the outlines. 
- TS. sobel             V->      Apply sobel operator. 
- ... split             V->      Pass on the input to N video outputs. 
- T.C spp               V->      Apply a simple post processing filter. 
- T.. sr                V->      Apply DNN-based image super resolution to the input. 
- ... ssim              VV->     Calculate the SSIM between two video streams. 
- .S. stereo3d          V->      Convert video stereoscopic 3D view. 
- ..C streamselect      N->      Select video streams 
- ... subtitles         V->      Render text subtitles onto input video using the libass library. 
- ... super2xsai        V->      Scale the input by 2x using the Super2xSaI pixel art algorithm. 
- T.. swaprect          V->      Swap 2 rectangular objects in video. 
- T.. swapuv            V->      Swap U and V components. 
- TS. tblend            V->      Blend successive frames. 
- ... telecine          V->      Apply a telecine pattern. 
- TS. threshold         VVVV->   Threshold first video stream using other video streams. 
- ... thumbnail         V->      Select the most representative frame in a given sequence of consecutive frames. 
- ... tile              V->      Tile several successive frames together. 
- ... tinterlace        V->      Perform temporal field interlacing. 
- TS. tlut2             V->      Compute and apply a lookup table from two successive frames. 
- TS. tmix              V->      Mix successive video frames. 
- .S. tonemap           V->      Conversion to/from different dynamic ranges. 
- ... tpad              V->      Temporarily pad video frames. 
- .S. transpose         V->      Transpose input video. 
- ... transpose_vaapi   V->      VAAPI VPP for transpose 
- ... trim              V->      Pick one continuous section from the input, drop the rest. 
- TS. unpremultiply     N->      UnPreMultiply first stream with first plane of second stream. 
- TS. unsharp           V->      Sharpen or blur the input video. 
- T.. uspp              V->      Apply Ultra Simple / Slow Post-processing filter. 
- T.. vaguedenoiser     V->      Apply a Wavelet based Denoiser. 
- ... vectorscope       V->      Video vectorscope. 
- T.. vflip             V->      Flip the input video vertically. 
- ... vfrdet            V->      Variable frame rate detect filter. 
- TS. vibrance          V->      Boost or alter saturation. 
- ... vidstabdetect     V->      Extract relative transformations, pass 1 of 2 for stabilization (see vidstabtransform for pass 2). 
- ... vidstabtransform  V->      Transform the frames, pass 2 of 2 for stabilization (see vidstabdetect for pass 1). 
- T.. vignette          V->      Make or reverse a vignette effect. 
- ... vmafmotion        V->      Calculate the VMAF Motion score. 
- ... vstack            N->      Stack video inputs vertically. 
- TS. w3fdif            V->      Apply Martin Weston three field deinterlace. 
- .S. waveform          V->      Video waveform monitor. 
- ... weave             V->      Weave input video fields into frames. 
- .S. xbr               V->      Scale the input using xBR algorithm. 
- .S. xmedian           N->      Pick median pixels from several video inputs. 
- ... xstack            N->      Stack video inputs into custom layout. 
- TS. yadif             V->      Deinterlace the input image. 
- ... zmq               V->      Receive commands through ZMQ and broker them to filters. 
- ... zoompan           V->      Apply Zoom & Pan effect. 
- ... allrgb            |->      Generate all RGB colors. 
- ... allyuv            |->      Generate all yuv colors. 
- ... cellauto          |->      Create pattern generated by an elementary cellular automaton. 
- ..C color             |->      Provide an uniformly colored input. 
- ... frei0r_src        |->      Generate a frei0r source. 
- ... haldclutsrc       |->      Provide an identity Hald CLUT. 
- ... life              |->      Create life. 
- ... mandelbrot        |->      Render a Mandelbrot fractal. 
- ... mptestsrc         |->      Generate various test pattern. 
- ... nullsrc           |->      Null video source, return unprocessed video frames. 
- ... pal75bars         |->      Generate PAL 75% color bars. 
- ... pal100bars        |->      Generate PAL 100% color bars. 
- ... rgbtestsrc        |->      Generate RGB test pattern. 
- ... smptebars         |->      Generate SMPTE color bars. 
- ... smptehdbars       |->      Generate SMPTE HD color bars. 
- ... testsrc           |->      Generate test pattern. 
- ... testsrc2          |->      Generate another test pattern. 
- ... yuvtestsrc        |->      Generate YUV test pattern. 
- ... nullsink          V->      Do absolutely nothing with the input video. 
- ... abitscope         A->      Convert input audio to audio bit scope video output. 
- ... adrawgraph        A->      Draw a graph using input audio metadata. 
- ... agraphmonitor     A->      Show various filtergraph stats. 
- ... ahistogram        A->      Convert input audio to histogram video output. 
- ... aphasemeter       A->      Convert input audio to phase meter video output. 
- ... avectorscope      A->      Convert input audio to vectorscope video output. 
- ..C concat            N->      Concatenate audio and video streams. 
- ... showcqt           A->      Convert input audio to a CQT (Constant/Clamped Q Transform) spectrum video output. 
- ... showfreqs         A->      Convert input audio to a frequencies video output. 
- .S. showspatial       A->      Convert input audio to a spatial video output. 
- .S. showspectrum      A->      Convert input audio to a spectrum video output. 
- .S. showspectrumpic   A->      Convert input audio to a spectrum video output single picture. 
- ... showvolume        A->      Convert input audio volume to video output. 
- ... showwaves         A->      Convert input audio to a video output. 
- ... showwavespic      A->      Convert input audio to a video output single picture. 
- ... spectrumsynth     VV->     Convert input spectrum videos to audio output. 
- ..C amovie            |->      Read audio from a movie source. 
- ..C movie             |->      Read from a movie source. 
- ... afifo             A->      Buffer input frames and send them when they are requested. 
- ... fifo              V->      Buffer input images and send them when they are requested. 
- ... abuffer           |->      Buffer audio frames, and make them accessible to the filterchain. 
- ... buffer            |->      Buffer video frames, and make them accessible to the filterchain. 
- ... abuffersink       A->      Buffer audio frames, and make them available to the end of the filter graph. 
- ... buffersink        V->      Buffer video frames, and make them available to the end of the filter graph. 
-</code> 
- 
  
ubuntu/video/ffmpeg/rotate_videos.1686079249.txt.gz · Last modified: 2023/06/06 19:20 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki