: Copies the video/audio streams directly without re-encoding, making it nearly instantaneous. 2. Converting the Song to MP3

# Fast then slow (meme effect) ffmpeg -i "Rick_and_Morty_S02E05.mkv" -ss 00:12:00 -t 4 \ -filter_complex "[0:v]setpts=0.5*PTS[v1];[0:a]atempo=2.0[a1]; \ [v1]setpts=2*PTS[v2];[a1]atempo=0.5[a2]; \ [v1][a1][v2][a2]concat=n=2:v=1:a=1" \ speed_ramp.mp4

To clip the iconic performance (roughly between 01:30 and 02:00 in many versions) without losing quality, use the stream copy method :

If you're looking to process "Rick and Morty S02E05" in some way (e.g., convert it, extract a part, etc.), here's a basic conversion example: