[CLOSED] I used to download videos from this site with ffmpeg, but now I get the "empty playlist" error.
the site is http://www.startv.com.tr/dizi/kara-sevda
i extract the m3u8 url, and as in the picture try to get the video with ffmpeg.
What is wrong in my steps? please advice on how to accomplish this.
		
			+ Reply to Thread
			
		
		
		
			
	
	
				Results 1 to 6 of 6
			
		- 
	Last edited by phdgeo; 18th Feb 2016 at 10:11. 
- 
	can you clarify how you got the playlist.m3u8 with the chunklist in it. THe m3u8 i have is empty. 
- 
	Anonymous84347344GuestCode:http://startvlb2.cdnturk.com/startv/_definst_/StarTV/Dizi/karasevda/karasevda16_hhghh.mp4/manifest.f4m?e11b3501178b61b39327ddbaf0f1382abd05b815ab421995f779bd56268d3a47cadefdba42ef5fdebbc462b90559cb67&v=1 Code:livestreamer "hds://http://startvlb2.cdnturk.com/startv/_definst_/StarTV/Dizi/karasevda/karasevda16_hhghh.mp4/manifest.f4m?e11b3501178b61b39327ddbaf0f1382abd05b815ab421995f779bd56268d3a47cadefdba42ef5fdebbc462b90559cb67&v=1" best -o StarTV.flv Code:[cli][info] Found matching plugin stream for URL hds://http://startvlb2.cdnturk.com/startv/_definst_/StarTV/Dizi/karasevda/karasevda16_hhghh.mp4/manifest.f4m?e11b3501178b61b39327ddbaf0f1382abd05b815ab421995f779bd56268d3a47cadefdba42ef5fdebbc462b90559cb67&v=1 [cli][info] Available streams: 528p (worst, best) [cli][info] Opening stream: 528p (hds) 
- 
	Based on answers, I created a script that replicates the process. Thanks for the replies.... 
 
 $1 is the URL, $2 is the target file....
 
 
 
 curl -A "Mozilla/5.0 (iPad; U; CPU OS 4_2_1 like Mac OS X; ja-jp) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5" $1 -o x.html
 
 curl -A "Mozilla/5.0 (iPad; U; CPU OS 4_2_1 like Mac OS X; ja-jp) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5" `egrep mobileUrl x.html |awk '{n=split($0,a," |&"); for(i=0;i<n;i++) {if(a[i]=="mobileUrl:")print a[i+1]}}' |tr -d '"' |tr -d ','` -o playlist.m3u8
 
 rm -f $2.mp4
 
 ffmpeg -i playlist.m3u8 -c copy -bsf:a aac_adtstoasc $2.mp4
 
 
Similar Threads
- 
  [SOLVED] "--ipratio" "--pbratio"+"--scenecut" "--minkeyint" / "--keyintBy Kdmeizk in forum Video ConversionReplies: 14Last Post: 21st Jun 2015, 08:21
- 
  "Cue file" equivalent for playlist controlBy robertazimmerman in forum Media Center PC / MediaCentersReplies: 3Last Post: 7th Nov 2014, 15:47
- 
  the "-intra" command in ffmpeg.exe affects encoding "-vcodec copy" mode?By marcorocchini in forum Newbie / General discussionsReplies: 1Last Post: 23rd Oct 2013, 16:53
- 
  (dvd maker) says "finished" but dvd coming up emptyBy jamescali in forum Authoring (DVD)Replies: 18Last Post: 7th Dec 2012, 14:59
- 
  How to view files on "empty" 16GB memory stickBy jimdagys in forum ComputerReplies: 15Last Post: 15th Dec 2011, 08:35


 
		
		 View Profile
				View Profile
			 View Forum Posts
				View Forum Posts
			 Private Message
				Private Message
			 
 
			
			

 Quote
 Quote