Beep beep miles miles (bilibili) video download - Support for 4K

Foreword

Small broken station now supports 4K clarity, and not as a 4K display my experience, however, and not see the difference, but I just love Tuen Welcome to the personal blog: https://ccsubia.github.io/

Preparation phase - installation of the famous downloader IDM

Download Link: Official Links Personal Cloud disk link

Installation Tutorial much to say, a personal cloud disk version integrated file browser plug-in (plug-in is particularly important)

Formal stage - went to a small break station download

Browser normal browsing small broken station, find the need to download the video page will appear IDM download floating window in the top right of the video page, as shown below (If you do not see this window Please suspension 刷新页面or 重启浏览器or 更换浏览器recommended Chrome, or may not be your plugin is not installed, or because there have been a number I did not know before the operation, please refresh the page does not resolve itself, or launch its own smart brain to solve)

Click to download the video, if the video is downloaded FLVformat is instantly downloaded directly (usually the default is to use the B station H5 player, if you are old IE users, most of the video downloaded here only MP4format, only a small part of the video will H5 player provides a FLVformat to download)

At this point you need to determine the player browser used (H5 / flash, to set the playback page you can see B station mouse moves) are as follows:
Switching flash

If H5 player, due to the general audio and video B station is separated by at this time of download MP4format video is no sound (Anyway, I was not) , 切换为flash播放器then you can download a maximum resolution of only 1080 + the FLVformat of video file, but the file is downloaded video with sound (so very Nice).

Advanced stage -4K resolution video downloads

如果视频没有4K画质或你主观不需要4K,到这就可以结束了

如果没有大会员也可以到这结束了

Switch to H5 players, refresh the page to select the 4Kresolution of video download (provided of course that you have 大会员), I tested through the use of IDMdownloading only to find most do not have the 4Kvideo resolution of the corresponding audio files with 4Kresolution video use IDMCan not find the audio file separate small broken station

Here Insert Picture Description
Here Insert Picture Description

Now we can only go a little detour, that is, before the extracted FLVvideo format audio

Online video extract audio address: http://www.bejson.com/convert/video2audio/

Finally, once audio and video merge, merge audio and video files can be downloaded from the network disk
video merger requires ffmpeg support, can go to the official website to download the global installed
https://www.ffmpeg.org/download.html/

I only seem to be available for download in the network disk .exefiles, and .batfiles can be in the same folder directory

Self-created .batfile:

1. Create a local txt file
2. Enter the following code

@echo off
title 音视频合并
echo 个人博客网站:[url]https://ccsubia.github.io/[/url]
echo.
set /p audio=请将【音频】文件拖拽到此处,按下回车确认:
set /p video=请将【视频】文件拖拽到此处,按下回车确认:
ffmpeg.exe -i %audio% -i %video% -acodec copy -vcodec copy %video%.mp4
echo.
echo 合并结束!
echo 文件已经输出到本地原视频所在文件夹。
pause

3. Save as .bat(Note coding mode selection ANSI, otherwise there will be Chinese garbled) files
4. Double-click the .batfile, drag the audio and video files, enter
5. End

Released five original articles · won praise 3 · Views 465

Guess you like

Origin blog.csdn.net/qq_40552794/article/details/104060554