Audio/video stream recording forums (http://stream-recorder.com/forum/index.php)
-   Video stream recording (http://stream-recorder.com/forum/forumdisplay.php?f=4)
-   -  

Little help Using FFMPEG

(http://stream-recorder.com/forum/showthread.php?t=20288)

mirw 09-24-2015 04:58 PM

Little help Using FFMPEG


 
I want to play section
ffplay http://00.0.0.0/l/playlist.m3u8?d=2&p2=05d9a598

He did not read the sign "&"

Is there a solution?

linnew17 09-25-2015 01:40 AM

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.


All times are GMT -6. The time now is 04:48 AM.