How to convert pafy audio files to mp3 on fly in Django App

762 Views Asked by At

I am making a Youtube to mp3 downloader app Using Django and pafy,

I am Stuck on two problems from a long while,

  1. Pafy by default give webm and mp4a I want to convert them into mp3 files without downloading them to my servers, is it possible? And Can I change the thumbnail of the mp3 file?

  2. The link which pafy gives are not download links they start playing in the browser. How to convert them into downloadable links, I tried some combinations but always got error.

Here are my files

Views.py

class download(generic.View):
    template_name = 'download_mp3.html'
    def get(self, request, *args, **kwargs):
        return render(request, self.template_name)
    def post(self, request, *args, **kwargs):
        url = request.POST['url']
        url = url_corrector(url)  # Converting the urls in a format that is supported by pafy.
        video = pafy.new(url)  # creates a pafy object for a given youtube url.
        stream_audio = video.audiostreams  # only audio
        audio_streams = list()  # list of all the dash audio formats(only audio)
        for a in stream_audio:
            audio_streams.append(
                [a.bitrate, a.extension, filesizeformat(a.get_filesize()), a.url + "&title=" + video.title])

        return render(request, self.template_name,
                      {'url': request.POST['url'],
                       'title': video.title, 
                        'thumb': video.bigthumbhd, 
                       'duration': video.duration, 'views': video.viewcount,
                       'stream_audio': audio_streams})

urls.py

urlpatterns = [
    path('', views.download.as_view(), name='youtube_to_mp3')

]

download.html

 <table class="table table-hover text-center">
            <p align="center">Audio Only</p>
            <thead>
            <tr class="text-center">

                <th class="text-center">Bitrate</th>
                <th class ="text-center">Extension</th>
                <th class="text-center">File Size</th>
                <th class="text-center">Download Link</th>
                <th class="text-center">Download </th>
            </tr>
            </thead> 
            <tbody>
            {% for file_size,bitrate,extension,url in stream_audio %}
                <tr>

                    <td>{{ file_size }}</td>
                    <td>{{ bitrate }} </td>
                    <td>{{ extension }}</td>
                    <td><a href="{{ url }}" download="{{ title }}.{{ extension }}"><span
                            class="glyphicon glyphicon-download-alt"></span> Download</a></td>
                    <td><a href="{{ download }} "></a> </td>
                    <!-- <td><a href="{{ download_url }} ">Direct</a> </td> -->
                        </tr>
            {% endfor %}
            </tbody>
        </table>

        </div>
    {% else %}

    {% endif %}
1

There are 1 best solutions below

0
On

I am sorry I am writing it here I don't have 50 repo to write a comment so I have to write it here I will delete as soon as he(Abhijeet pal) reply here

Hey I am also making a YouTube from Django but I am struck in download portion

<a href="{{ music_down.url }}" download="{{ music_down.filename }}">
  <input class="btn btn-danger" type="button" value="Download">
</a>

It open in a black window with the mini player and when I try to download it does not show me the title of the video it saves as "videoplayback.mp4" How did you deal with it?