mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 09:47:07 -05:00 
			
		
		
		
	Added dropbox support. issue #2055
This commit is contained in:
		
							
								
								
									
										33
									
								
								youtube_dl/extractor/dropbox.py
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										33
									
								
								youtube_dl/extractor/dropbox.py
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,33 @@
 | 
			
		||||
# coding: utf-8
 | 
			
		||||
from __future__ import unicode_literals
 | 
			
		||||
 | 
			
		||||
import re
 | 
			
		||||
 | 
			
		||||
from .common import InfoExtractor
 | 
			
		||||
 | 
			
		||||
class DropBoxIE(InfoExtractor):
 | 
			
		||||
    _VALID_URL = r'https?://(?:www\.)?dropbox.com/s/(?P<id>[a-zA-Z0-9]{15})/(?P<title>.*)'
 | 
			
		||||
    _TEST = {
 | 
			
		||||
        'url': 'https://www.dropbox.com/s/mcnzehi9wo55th4/20131219_085616.mp4',
 | 
			
		||||
        'file': '20131219_085616.mp4',
 | 
			
		||||
        'md5': '2cec58eb277054eca0dbaaf3bdc72564',
 | 
			
		||||
        
 | 
			
		||||
    }
 | 
			
		||||
    
 | 
			
		||||
    
 | 
			
		||||
    def _real_extract(self,url):
 | 
			
		||||
        mobj = re.match(self._VALID_URL, url)
 | 
			
		||||
        video_id=mobj.group('id')
 | 
			
		||||
        title=mobj.group('title')
 | 
			
		||||
        webpage = self._download_webpage(url, video_id)
 | 
			
		||||
        video_url=url+'?dl=1'
 | 
			
		||||
        return{
 | 
			
		||||
               'id':video_id,
 | 
			
		||||
               'title':title,
 | 
			
		||||
               'formats': [{
 | 
			
		||||
                            'url': video_url,
 | 
			
		||||
                            'vcodec': 'none',
 | 
			
		||||
                          }]
 | 
			
		||||
               
 | 
			
		||||
               }
 | 
			
		||||
        
 | 
			
		||||
		Reference in New Issue
	
	Block a user