View Single Post
  #2  
Old 09-25-2015, 01:40 AM
linnew17 linnew17 is offline
Junior Member
 
Join Date: Aug 2015
Posts: 6
linnew17 is on a distinguished road
Default

Re: Little help Using FFMPEG


The ampersand & is a special character that needs to be escaped when passed as an argument. You can surround the argument with double qoutes "" or escape the ampersand with a caret ^, so either
Code:
ffplay "http://00.0.0.0/l/playlist.m3u8?d=2&p2=05d9a598"
or
Code:
ffplay http://00.0.0.0/l/playlist.m3u8?d=2^&p2=05d9a598
should work.
Reply With Quote