Smule Video Downloader

Overview

Smule Video Downloader

Using Requests,Re & Urllib

Installation

- apt install git (for vps) or pkg install git (for termux)
- git clone https://github.com/hansengianto/smuledownloader
- apt install python3
- pip install requests
- pip install re
- pip install urllib

*Note : if you're using linux, use pip3 install

How To Run

- python3 smuledownloader.py or python smuledownloader.py

Contact Me

- Instagram
You might also like...
Python Youtube Video-Playlist Downloader

Youtube-Video-Playlist-Downloader-PyQt5 You can download videos and playlists on YouTube with this script. Script has GUI. Enjoy. Setup git clone http

A simple GUI video downloader built off of the python module 'yt-dlp'
A simple GUI video downloader built off of the python module 'yt-dlp'

Simple-Youtube-DL-Gui Supported Operating Systems Windows 7 (x64), Windows 8 (x64), and Windows 10 (x64) How to use Main Gui Extract program from arch

A YouTube downloader which allows you to choose which video you want
A YouTube downloader which allows you to choose which video you want

Youtube Video Downloader Download multiple videos in one go! How to Use 1.First type the video you want to download 2.On clicking the Search button yo

Audio/Video downloader

youtubeDownloader Audio/Video downloader • The project downloads audio/video/both after link is entered • It also shows total size of the file, time l

TikTok downloader video without watermark from Telegram bot

⬇️ How to download video from Tik Tok via telegram bot? Send a link to the video from tik tok to our telegram bot and it will send you a video without

Python based YouTube video Downloader GUI Application.
Python based YouTube video Downloader GUI Application.

Youtube video Downloader Python based Youtube video Downloader GUI Application. Installation Python Dependencies Import pytube pip install pytube Im

A Simple YouTube Video Downloader With Python
A Simple YouTube Video Downloader With Python

Simple YouTube Video Downloader Simple YouTube Video Downloader is an open source project with a very simple UI that tries to speed up the process of

Tkinter based YouTube video downloader works on pytube 11.0.2. Can download YouTube videos in 720p(HD), 144p and even only audio.

YouTube-Downloader Tkinter based YouTube video downloader works on pytube 11.0.2. Can download YouTube videos in 720p(HD), 144p and even only audio. G

Youtube video downloader and info extractor for python.

tube_dl Tube_dl is a Simple Youtube video downloader for Python. A Modular approach to bypass and download Youtube Videos and Playlist from Youtube us

Comments
  • Ability to download audio

    Ability to download audio

    (m4a) Something like this works

    import requests, re, urllib.request, urllib.parse
    
    ##############################################
    #Source : https://github.com/hansengianto
    #Date : 28 Oct 2021
    ##############################################
    
    url = input("Input Smule Audio URL : ")
    
    dl_page_url = f"https://sownloader.com/index.php?url={url}#support-sownloader"
    
    print('dl_page_url:', dl_page_url)
    
    request = requests.get(dl_page_url).text
    m4a = re.findall("(?:url\=)(https:\/\/c-cl\.cdn\.smule\.com\/.+m4a)",request)
    
    print('m4a:', m4a)
    
    try:
      split_id = url.split("/")
    
      print('split_id:', split_id)
      print('split_id[4]:', split_id[4])
    
      file_name = urllib.parse.unquote(split_id[4])
      print('file_name:', file_name)
    
      urllib.request.urlretrieve(m4a[1], file_name+".m4a")
      print("Success Download Audio")
    except Exception as e:
      print("Error Found : \n"+str(e))
    
    opened by d9k 2
  • Smule changed cdn server domain for new records

    Smule changed cdn server domain for new records

    Smule changed cdn server domain for new records. So

    mp4 = re.findall("(?:url\=)(https:\/\/c-cl\.cdn\.smule\.com\/.+\.mp4)",request)
    m4a = re.findall("(?:url\=)(https:\/\/c-cl\.cdn\.smule\.com\/.+m4a)",request)
    

    should be changed to something like

    mp4 = re.findall("(?:url\=)(https:\/\/[a-z\-]+\.cdn\.smule\.com\/.+\.mp4)",request)
    m4a = re.findall("(?:url\=)(https:\/\/[a-z\-]+\.cdn\.smule\.com\/.+m4a)",request)
    
    opened by d9k 0
Owner
Hansen Gianto
Python & Cyber Security Enthusiast
Hansen Gianto
Youtube Downloader is a simple but highly efficient Youtube Video Downloader, made completly using Python

Youtube Downloader is a simple but highly efficient Youtube Video Downloader, made completly using Python

Arsh 2 Nov 26, 2022
Python-Youtube-Downloader - An Open Source Python Youtube Downloader

Python-Youtube-Downloader Hello There This Is An Open Source Python Youtube Down

Flex Tools 3 Jun 14, 2022
Youtube-downloader-using-Python - Youtube downloader using Python

Youtube-downloader-using-Python Hii guys !! Fancy to see here Welcome! built by

Lakshmi Deepak 2 Jun 9, 2022
Music and video downloader, Made with love by Bryan Herrera

Python-Mp3Mp4-Downloader Music and video downloader, Made with love by Bryan Herrera Requirements CHOCOLATELY windows command If your system does not

ርᚱ1ናተᛰ ᚻህᚥተპᚱ 104 Dec 27, 2022
Using Youtube downloader is the fast and easy way to download and save any YouTube video.

Youtube video downloader using Django Using Django as a backend along with pytube module to create Youtbue Video Downloader. https://yt-videos-downloa

Suman Raj Khanal 10 Jun 18, 2022
Simple Youtube Video Downloader

Simple Youtube Video Downloader Download Youtube video using link and Will output result in D:/ (You can change the path in main.py file) Installation

Hansen Gianto 1 Oct 28, 2021
the best video downloader for terminals (currently only compatible with Linux and Windows)

the best video downloader for terminals (currently only compatible with Linux and Windows)

Amaral 2 Oct 14, 2021
Youtube Downloader is a Graphic User Interface(GUI) that lets users download a Youtube Video or Audio through a URL

Youtube Downloader This Python and Tkinter based GUI allows users to directly download the Best Resolution Videos and Audios from Youtube. Pa-fy Insta

Samarth Kumar 2 Jun 25, 2022
Youtube Video Downloader Using Python Gui Appliction with progress Bar

Youtube-Video-Downloader Youtube Video Downloader Using Python Gui Appliction with progress Bar Module Used Pytube Tkinter Pil Urllib Bytes Io LICENSE

Community Programmer 6 Dec 19, 2022
YT-Downloader is a Tool to download youtube video.

YT-Downloader YT-Downloader is a Tool to download youtube video.If you are looking for a simple video downloader tool Than This YT-Downloader may be u

Pradip Thapa 7 May 11, 2022