- Feb 26, 2023
- 152
- 25
-The content MUST be from TikTok, do not post slips from other platforms.
-You MUST include profile names / link to the profile, or make every attempt to include it.
-Include timestamps if you post a long video or a full live video.
-Make sure ALL girls posted are 18+
ffmpeg -i input.ts -c copy output.mp4
]. XDM which was recommended by Ionic Spark seems to remux ts files to mp4 automatically. I haven't tried it myself yet.:start
@set /p url="Enter url to video.m3u8 playlist in preferred and available resolution (e.g.: https://.../1080p/video.m3u8; https://.../720p/video.m3u8; https://.../842x480/video.m3u8): "
@if "%url%" EQU "" goto start
:fname
@set /p name="Enter video name (without .mp4): "
@if "%name%" EQU "" goto fname
ffmpeg -hide_banner -user_agent "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36" -headers "Referer:https://iframe.mediadelivery.net/" -i "%url%" -c copy "%name%.mp4"
@pause
@goto start
:start
@set /p purl="Enter url to playlist.m3u8 to check available resolutions (e.g.: https://.../playlist.m3u8): "
@if "%purl%" EQU "" goto start
ffprobe -hide_banner -user_agent "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36" -headers "Referer:https://iframe.mediadelivery.net/" -i "%purl%"
@pause
@goto start