ffmpeg -i "https://videofile.mp4"
NOTE: This will return all kinds of information about the media file, such as bitrate, fps, encoded type, subtitles info, audio info, channels and more.
ffmpeg -i "https://videofile.mp4" -c copy downloadedfile.mp4
NOTE: Downloads the videolink.mp4 file and saves (copies) it as downloadedfile.mp4
ffmpeg -i "https://videofile.mp4" -c:v libx264 -preset fast -crf 18 downloadedfile.mp4
NOTE: Downloads the videolink.mp4 file and uses a fast encoding to compression speed, so the file will be quiet large but it will encode quickly.
ffmpeg -i "https://videofile.mp4" -c:v libx264 -preset fast -crf 19 downloadedfile.mp4
ffmpeg -i "https://inputurlstream.m3u8" -map 0:10 -map 0:11 -c copy small_output.mp4
NOTE: