mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-30 22:25:19 +00:00 
			
		
		
		
	[dailymotion] Extract view count (#1895)
This commit is contained in:
		| @@ -26,6 +26,7 @@ from youtube_dl.utils import ( | ||||
|     unsmuggle_url, | ||||
|     shell_quote, | ||||
|     encodeFilename, | ||||
|     str_to_int, | ||||
| ) | ||||
|  | ||||
| if sys.version_info < (3, 0): | ||||
| @@ -176,6 +177,10 @@ class TestUtil(unittest.TestCase): | ||||
|         args = ['ffmpeg', '-i', encodeFilename(u'ñ€ß\'.mp4')] | ||||
|         self.assertEqual(shell_quote(args), u"""ffmpeg -i 'ñ€ß'"'"'.mp4'""") | ||||
|  | ||||
|     def test_str_to_int(self): | ||||
|         self.assertEqual(str_to_int('123,456'), 123456) | ||||
|         self.assertEqual(str_to_int('123.456'), 123456) | ||||
|  | ||||
|  | ||||
| if __name__ == '__main__': | ||||
|     unittest.main() | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Jaime Marquínez Ferrándiz
					Jaime Marquínez Ferrándiz