Giter Club home page Giter Club logo

kodi-playercorefactory's Introduction

Kodi playercorefactory.xml repo

pilfer is the new python version of the rip-record script

A set of playercorefactory.xml files for kodi to play videos in an external player or record the video.
There is also a set of bash script to record the outside of kodi using the terminal

Files are part of this youtube tutorial

kodi record any video by using ffmpeg, rtmpdump, vlc and mpv as external players

https://www.youtube.com/playlist?list=PL7hhhG5qUoXlpmIjqv2eEBukAeJSVNsdX

Youtube video showing you how to set up the kodi-playercorefactory repo

kodi playercorefactory.xml git repo - kodi recording videos 27

https://www.youtube.com/watch?v=It92vzpK9xo

documentation

https://github.com/NapoleonWils0n/kodi-playercorefactory/tree/master/docs

windows set up

https://github.com/NapoleonWils0n/kodi-playercorefactory/tree/master/windows

mac osx set up

https://github.com/NapoleonWils0n/kodi-playercorefactory/tree/master/macosx

linux set up

Step 1 - installing software

arch linux install git, ffmpeg, libfdk-aac, rtmpdump, vlc, mpv, youtube-dl, aria2c

sudo pacman -S git ffmpeg libfdk-aac rtmpdump vlc mpv youtube-dl aria2c

ubuntu install git, ffmpeg, fdk-aac-dev, rtmpdump, vlc, mpv, youtube-dl, aria2

sudo apt install -y git ffmpeg fdk-aac-dev rtmpdump vlc mpv youtube-dl aria2

ubuntu mate install git, ffmpeg, fdkaac, rtmpdump, vlc, mpv, youtube-dl, aria2

sudo apt install -y git ffmpeg fdkaac rtmpdump vlc mpv youtube-dl aria2

debian install git, ffmpeg, libfdk-aac-dev, rtmpdump, vlc, mpv, youtube-dl, aria2

sudo apt install -y git-core ffmpeg libfdk-aac-dev rtmpdump vlc mpv youtube-dl aria2

note you need to enable backports, or be using the testing or unstable debian branches to install ffmpeg

linux mint 17 install git, ffmpeg, libfdk-aac-dev, rtmpdump, vlc, mpv, youtube-dl, aria2

linux mint 17 doesnt have ffmpeg in the main software repository so you have to add it via a ppa

  • linux mint 17 add ffmpeg ppa
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:mc3man/trusty-media
sudo apt-get update
  • install ffmpeg and all the other packages
sudo apt install -y git ffmpeg libfdk-aac-dev rtmpdump vlc mpv youtube-dl aria2

Step 2 - download the kodi-playercorefactory repo with git

create a git directory in your home

mkdir -p ~/git
cd ~/git
git clone https://github.com/NapoleonWils0n/kodi-playercorefactory.git

Step 3 - copy the playercorefactory.xml file to your kodi userdata folder

cp  ~/git/kodi-playercorefactory/linux/combined/playercorefactory.xml ~/.kodi/userdata/playercorefactory.xml 

or you can manually copy the playercorefactory.xml file to your kodi userdata directory see list below for the location of the kodi userdata directory on your operating system

to update the repository change directory to the kodi-playercorefactory

cd ~/git/kodi-playercorefactory

then run the git pull command to pull down the latest changes from github

git pull

Step 4 - bash scripts set up

add the $HOME/git/kodi-playercorefactory/bash-scripts directory to your bash path

  • linux mint doesnt come with a ~/.bashrc file so you need to create it
  • you can use gedit and create a file called .bashrc and save it your home folder
  • or you can create the bashrc on the command line

edit your .bashrc in your home directory im using vim to edit the file but you can use any text editor

vim ~/.bashrc

if you dont have a ~/.bashrc file you can create it by running the following command

touch ~/.bashrc

add the code below to your ~/.bashrc to add the $HOME/git/kodi-playercorefactory/bash-scripts directory to your bash path

the default file path is your home-directory/git/kodi-playercorefactory/bash-scripts if you have downloaded the git repo to a different path then change the code below accordingly

set PATH so it includes the kodi playercorefactory scripts

if [ -d "$HOME/git/kodi-playercorefactory/bash-scripts" ] ; then
 		PATH="$HOME/git/kodi-playercorefactory/bash-scripts:$PATH"
fi

The scripts are already executable so you dont need to chomd +x the scripts

source your ~/.bashrc to pick up the scripts

. ~/.bashrc

see below for location of the userdata folder for your operating system

Important note for curl and wget scripts

the curl and wget scripts must not be run in the background

Location of the userdata folder

Operative system File path
Android Android/data/org.xbmc.kodi/files/.kodi/userdata/ (see note)
iOS /private/var/mobile/Library/Preferences/Kodi/userdata/
Linux ~/.kodi/userdata/
Mac /Users/<your_user_name>/Library/Application Support/Kodi/userdata/ (see note)
OpenELEC /storage/.kodi/userdata/
Windows Start - type %APPDATA%\kodi\userdata - press

usage

You can press c on the keyboard on a video link to bring up the play using menu and then select a player and begin recording

On some video links you need to open the video first and then press y on the keyboard to bring up the play using menu and then select a player and begin recording

press y on the keyboard while a video is playing in kodi to bring up the play using contextual menu, you can then choose from one the players in the playercorefactory.xml, to play the video in an external player or record the video stream

You can also select a recording duration from the play using menu

bash scripts

The rip-record bash script can also set a duration for the recording using the ffmpeg time option -t 00:00:00
Using the hours minutes seconds syntax

rip-record textfile.txt -t 00:00:00

background recording from kodi

When you use one of the players to record a video from kodi by using the play using contextual menu the video is recorded in the background and does not open a terminal window

each ffmpeg player in the playercorefactory.xml file also has a player with a recording duration for 30min, 1hr, 2hrs

so you can specify how long to record the video for

eg:

  • 30mins
  • 1hrs
  • 2hrs

if you dont specify a recording duration you have to manually find the process id of ffmpeg and kill it to stop recording

find the process id with ps aux | grep ffmpeg

ps aux | grep ffmpeg  

or by using pgrep ffmpeg

pgrep ffmpeg  

then kill the process, replace PID with the process id you got from ps aux or pgrep

kill PID  

or use pkill or kill the ffmpeg process

pkill ffmpeg

foreground recording in the terminal

Save the url of the video from kodi by press y on the keyboard while a video is playing in kodi to bring up the play using contextual menu, then selecting the save url option which will echo the url into a text file on your desktop

You can then use one of the bash scripts and pass in the location of the text file with the url of video, as an argument to script and it will download the video in a terminal window in the foreground

Kodi wiki Userdata directory

http://kodi.wiki/view/Userdata

Kodi wiki External players - playercorefactory.xml

http://kodi.wiki/view/External_players

kodi-playercorefactory's People

Contributors

napoleonwils0n avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

kodi-playercorefactory's Issues

Issue recording on addon DC Sports

Hi Napoleon

Further to my post.....

DC Sports is the add-on I am trying to record (seems to be all streams associated with this addon). I have been successfully recording other live tv channels with no issues.

Using rasp pi on osmc. Pressing y key then record but no output...

When I capture the url, this is the output:

http://163.172.170.33:8081/live/eurosport-hq/playlist.m3u8?wmsAuthSign=c2VydmVyX
3RpbWU9OS80LzIwMTYgNToyMzoxMyBBTSZoYXNoX3ZhbHVlPW9aSTczQ291NnpVZGY1aDhhWnlRRmc9PSZ2YWxpZG1pbnV0ZXM9NjAmaWQ9MTQxLjEwMS45OS44NSZzdHJtX2xlbj0xNw==|User-Agent=Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.
87 Safari/537.36

Running rip-record on this, produces a "Server returned 5XX" error.
Note the sed error always happens but I have had no issue recording up to now, so that appears to be an unrelated issue.

sed: -e expression #1, char 16: Invalid range end
[http @ 0x1dd5270] HTTP error 500 Internal Server Error
http://163.172.170.33:8081/live/eurosport-hq/playlist.m3u8?wmsAuthSign=c2VydmVyX3RpbWU9OS80LzIwMTYgNToyMzoxMyBBTSZoYXNoX3ZhbHVlPW9aSTczQ291NnpVZGY1aDhhWnlRRmc9PSZ2YWxpZG1pbnV0ZXM9NjAmaWQ9MTQxLjEwMS45OS44NSZzdHJtX2xlbj0xNw==|User-Agent=Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.87 Safari/537.36: Server returned 5XX Server Error reply

If I run the regex-checker it returns HTTP.
I then get the corresponding grep condition from the video-regex.sh file and run that against the url, (outputting into test.txt) as follows:

grep -Eo '^(http|https)://[a-zA-Z0-9:0-9/.&;,~?%@=-]_' video-url-2016-09-04-15-23-30.txt > test.txt

If i then run rip-record test.txt, recording works!

Not sure why, as it appears I am just re-creating the steps the rip-record bash script does....

Hope you can help....

Thanks Robbo755

Cant record from at.

Hi, I switched to Ubuntu Mate and I cant record from the terminal with at but I can record inside Kodi.
Was there anything updated on your program?

M3U8 plays but does not record

Hello Napoleon,
Some of these commands worked with errors!... See results for different filters...

How to find a regular expression?
Command 2 seems to be working faster than 1, and number 3 is not doing much it stops at 507 bytes

ffmpeg -hide_banner -i "http://medias2./catchup-mobile/replay/i/streaming-adaptatif_-dom-tom/2015/S53/J4/132862314-568584a2083cf-,standard1,standard2,standard3,standard4,.mp4.csmil/master.m3u8"
-c:v copy -bsf:a aac_adtstoasc
"$HOME/Desktop/video-$(date +"%m-%d-%y-%H-%M").mkv"

[http @ 0x561a00d1f6c0] No trailing CRLF found in HTTP header.
[h264 @ 0x561a00d1eec0] non-existing SPS 0 referenced in buffering period
Last message repeated 1 times
[http @ 0x561a00e6f660] No trailing CRLF found in HTTP header.
[h264 @ 0x561a00d1f8a0] non-existing SPS 0 referenced in buffering period
Last message repeated 1 times
[http @ 0x561a00da85e0] No trailing CRLF found in HTTP header.
[h264 @ 0x561a00e542e0] non-existing SPS 0 referenced in buffering period
Last message repeated 1 times
[http @ 0x561a01177780] No trailing CRLF found in HTTP header.
[h264 @ 0x561a010358e0] non-existing SPS 0 referenced in buffering period
Last message repeated 1 times
[h264 @ 0x561a00e55080] non-existing SPS 0 referenced in buffering period
[h264 @ 0x561a00da8140] non-existing SPS 0 referenced in buffering period
[h264 @ 0x561a00e51fa0] non-existing SPS 0 referenced in buffering period
[h264 @ 0x561a00e257c0] non-existing SPS 0 referenced in buffering period
Input #0, hls,applehttp, from 'http://medias2/catchup-mobile/replay/i/streaming-adaptatif_-dom-tom/2015/S53/J4/132862314-568584a2083cf-,standard1,standard2,standard3,standard4,.mp4.csmil/master.m3u8':
Duration: 01:20:47.40, start: 0.100667, bitrate: 0 kb/s
Program 0
Metadata:
variant_bitrate : 180000
Stream #0:0: Video: h264 (Constrained Baseline) ([27][0][0][0] / 0x001B), yuv420p, 256x144 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
Metadata:
variant_bitrate : 180000
Stream #0:1: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz, stereo, fltp, 66 kb/s
Metadata:
variant_bitrate : 180000
Program 1
Metadata:
variant_bitrate : 303000
Stream #0:2: Video: h264 (Constrained Baseline) ([27][0][0][0] / 0x001B), yuv420p, 320x180 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
Metadata:
variant_bitrate : 303000
Stream #0:3: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz, stereo, fltp, 66 kb/s
Metadata:
variant_bitrate : 303000
Program 2
Metadata:
variant_bitrate : 575000
Stream #0:4: Video: h264 (Constrained Baseline) ([27][0][0][0] / 0x001B), yuv420p, 512x288 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
Metadata:
variant_bitrate : 575000
Stream #0:5: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz, stereo, fltp, 66 kb/s
Metadata:
variant_bitrate : 575000
Program 3
Metadata:
variant_bitrate : 831000
Stream #0:6: Video: h264 (Main) ([27][0][0][0] / 0x001B), yuv420p, 704x396 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
Metadata:
variant_bitrate : 831000
Stream #0:7: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz, stereo, fltp, 66 kb/s
Metadata:
variant_bitrate : 831000
[matroska @ 0x561a01849660] Codec for stream 0 does not use global headers but container format requires global headers
Output #0, matroska, to '/home/master/Desktop/video-01-06-16-09-16.mkv':
Metadata:
encoder : Lavf56.40.101
Stream #0:0: Video: h264 (H264 / 0x34363248), yuv420p, 704x396 [SAR 1:1 DAR 16:9], q=2-31, 25 fps, 25 tbr, 1k tbn, 90k tbc
Metadata:
variant_bitrate : 831000
Stream #0:1: Audio: vorbis (libvorbis) (oV[0][0] / 0x566F), 48000 Hz, stereo, fltp
Metadata:
variant_bitrate : 180000
encoder : Lavc56.60.100 libvorbis
Stream mapping:
Stream #0:6 -> #0:0 (copy)
Stream #0:1 -> #0:1 (aac (native) -> vorbis (libvorbis))
Press [q] to stop, [?] for help
[hls,applehttp @ 0x561a00d08380] No longer receiving playlist 1
[hls,applehttp @ 0x561a00d08380] No longer receiving playlist 2
frame= 152 fps=0.0 q=-1.0 size= 713kB time=00:00:06.04 bitrate= 966.9kbits/[http @ 0x561a01036e20] No trailing CRLF found in HTTP header.
frame= 250 fps=181 q=-1.0 size= 1072kB time=00:00:09.96 bitrate= 881.6kbits/[http @ 0x561a00e2bf80] No trailing CRLF found in HTTP header.
frame= 250 fps= 36 q=-1.0 size= 1075kB time=00:00:09.96 bitrate= 884.2kbits/frame= 319 fps= 42 q=-1.0 size= 1373kB time=00:00:12.72 bitrate= 883.9kbits/frame= 414 fps= 52 q=-1.0 size= 1770kB time=00:00:16.52 bitrate= 877.5kbits/[http @ 0x561a01845940] No trailing CRLF found in HTTP header.
frame= 500 fps= 55 q=-1.0 size= 2115kB time=00:00:19.96 bitrate= 868.1kbits/[http @ 0x561a00e2b9a0] No trailing CRLF found in HTTP header.
frame= 500 fps= 51 q=-1.0 size= 2115kB time=00:00:19.96 bitrate= 868.1kbits/frame= 603 fps= 59 q=-1.0 size= 2556kB time=00:00:24.08 bitrate= 869.7kbits/frame= 695 fps= 65 q=-1.0 size= 2924kB time=00:00:27.76 bitrate= 862.9kbits/[http @ 0x561a00e12200] No trailing CRLF found in HTTP header.
frame= 750 fps= 65 q=-1.0 size= 3146kB time=00:00:29.96 bitrate= 860.1kbits/[http @ 0x561a01036e20] No trailing CRLF found in HTTP header.
frame= 750 fps= 60 q=-1.0 size= 3146kB time=00:00:29.96 bitrate= 860.1kbits/frame= 824 fps= 63 q=-1.0 size= 3471kB time=00:00:32.92 bitrate= 863.7kbits/frame= 934 fps= 69 q=-1.0 size= 3901kB time=00:00:37.32 bitrate= 856.4kbits/[http @ 0x561a01036b80] No trailing CRLF found in HTTP header.
frame= 999 fps= 70 q=-1.0 size= 4199kB time=00:00:39.93 bitrate= 861.5kbits/[http @ 0x561a01845940] No trailing CRLF found in HTTP header.
frame= 1000 fps= 66 q=-1.0 size= 4199kB time=00:00:39.96 bitrate= 860.9kbits/frame= 1066 fps= 68 q=-1.0 size= 4491kB time=00:00:42.60 bitrate= 863.6kbits/frame= 1222 fps= 75 q=-1.0 size= 5133kB time=00:00:48.84 bitrate= 861.0kbits/[http @ 0x561a00e2b9a0] No trailing CRLF found in HTTP header.
frame= 1250 fps= 73 q=-1.0 size= 5238kB time=00:00:49.96 bitrate= 858.9kbits/[http @ 0x561a01036e20] No trailing CRLF found in HTTP header.
frame= 1250 fps= 67 q=-1.0 size= 5238kB time=00:00:49.96 bitrate= 858.9kbits/frame= 1304 fps= 67 q=-1.0 size= 5474kB time=00:00:52.12 bitrate= 860.4kbits/frame= 1340 fps= 66 q=-1.0 size= 5616kB time=00:00:53.56 bitrate= 858.9kbits/frame= 1366 fps= 65 q=-1.0 size= 5731kB time=00:00:54.60 bitrate= 859.8kbits/frame= 1400 fps= 66 q=-1.0 size= 5861kB time=00:00:55.96 bitrate= 857.9kbits/frame= 1453 fps= 66 q=-1.0 size= 6105kB time=00:00:58.08 bitrate= 861.0kbits/[http @ 0x561a00e2bf80] No trailing CRLF found in HTTP header.
frame= 1500 fps= 66 q=-1.0 size= 6290kB time=00:00:59.96 bitrate= 859.4kbits/[http @ 0x561a00e2b9a0] No trailing CRLF found in HTTP header.
frame= 1500 fps= 64 q=-1.0 size= 6290kB time=00:00:59.96 bitrate= 859.4kbits/frame= 1591 fps= 67 q=-1.0 size= 6655kB time=00:01:03.60 bitrate= 857.2kbits/frame= 1740 fps= 71 q=-1.0 size= 7276kB time=00:01:09.56 bitrate= 856.9kbits/[http @ 0x561a01036e20] No trailing CRLF found in HTTP header.
frame= 1750 fps= 70 q=-1.0 size= 7316kB time=00:01:09.96 bitrate= 856.7kbits/[http @ 0x561a00e6e780] No trailing CRLF found in HTTP header.
frame= 1750 fps= 68 q=-1.0 size= 7316kB time=00:01:09.96 bitrate= 856.7kbits/frame= 1842 fps= 70 q=-1.0 size= 7696kB time=00:01:13.64 bitrate= 856.1kbits/[http @ 0x561a01845940] No trailing CRLF found in HTTP header.
frame= 1999 fps= 74 q=-1.0 size= 8385kB time=00:01:19.93 bitrate= 859.3kbits/[http @ 0x561a01036b80] No trailing CRLF found in HTTP header.
frame= 2000 fps= 72 q=-1.0 size= 8385kB time=00:01:19.96 bitrate= 859.1kbits/frame= 2058 fps= 73 q=-1.0 size= 8632kB time=00:01:22.28 bitrate= 859.4kbits/frame= 2229 fps= 78 q=-1.0 size= 9328kB time=00:01:29.12 bitrate= 857.5kbits/[http @ 0x561a00e2b9a0] No trailing CRLF found in HTTP header.
frame= 2250 fps= 77 q=-1.0 size= 9409kB time=00:01:29.96 bitrate= 856.8kbits/[http @ 0x561a01036e20] No trailing CRLF found in HTTP header.
frame= 2250 fps= 75 q=-1.0 Lsize= 9415kB time=00:01:30.00 bitrate= 856.9kbits/s
video:8455kB audio:903kB subtitle:0kB other streams:0kB global headers:4kB muxing overhead: 0.613166%
Exiting normally, received signal 2.

ffmpeg -hide_banner -i "http://medias2/catchup-mobile/replay/i/streaming-adaptatif_-dom-tom/2015/S53/J4/132862314-568584a2083cf-,standard1,standard2,standard3,standard4,.mp4.csmil/master.m3u8"
-bsf:v mpeg4_unpack_bframes -bsf:a aac_adtstoasc
"$HOME/Desktop/video-$(date +"%m-%d-%y-%H-%M").mkv"

[libx264 @ 0x5593ee035500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x5593ee035500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x5593ee035500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x5593ee035500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x5593ee035500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x5593ee035500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x5593ee035500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x5593ee035500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x5593ee035500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x5593ee035500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x5593ee035500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x5593ee035500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x5593ee035500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x5593ee035500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x5593ee035500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x5593ee035500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x5593ee035500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x5593ee035500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x5593ee035500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x5593ee035500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x5593ee035500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x5593ee035500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x5593ee035500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x5593ee035500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x5593ee035500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x5593ee035500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
frame= 210 fps=103 q=-1.0 Lsize= 599kB time=00:00:08.56 bitrate= 573.0kbits/s
video:506kB audio:84kB subtitle:0kB other streams:0kB global headers:4kB muxing overhead: 1.546587%
[libx264 @ 0x5593ee035500] frame I:1 Avg QP:15.49 size: 2567
[libx264 @ 0x5593ee035500] frame P:103 Avg QP:21.19 size: 4463
[libx264 @ 0x5593ee035500] frame B:106 Avg QP:19.43 size: 519
[libx264 @ 0x5593ee035500] consecutive B-frames: 20.0% 36.2% 5.7% 38.1%
[libx264 @ 0x5593ee035500] mb I I16..4: 43.1% 54.4% 2.5%
[libx264 @ 0x5593ee035500] mb P I16..4: 4.8% 8.2% 1.7% P16..4: 29.2% 6.8% 2.8% 0.0% 0.0% skip:46.4%
[libx264 @ 0x5593ee035500] mb B I16..4: 0.1% 0.1% 0.0% B16..8: 14.1% 1.0% 0.2% direct: 1.1% skip:83.4% L0:44.3% L1:49.3% BI: 6.4%
[libx264 @ 0x5593ee035500] 8x8 transform intra:55.3% inter:52.1%
[libx264 @ 0x5593ee035500] coded y,uvDC,uvAC intra: 34.2% 67.0% 20.2% inter: 9.4% 13.1% 0.8%
[libx264 @ 0x5593ee035500] i16 v,h,dc,p: 47% 27% 6% 19%
[libx264 @ 0x5593ee035500] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 10% 18% 50% 3% 4% 3% 5% 3% 5%
[libx264 @ 0x5593ee035500] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 16% 24% 19% 5% 9% 5% 11% 4% 7%
[libx264 @ 0x5593ee035500] i8c dc,h,v,p: 49% 30% 13% 8%
[libx264 @ 0x5593ee035500] Weighted P-Frames: Y:19.4% UV:14.6%
[libx264 @ 0x5593ee035500] ref P L0: 70.9% 11.3% 14.3% 3.1% 0.4%
[libx264 @ 0x5593ee035500] ref B L0: 89.7% 10.2% 0.1%
[libx264 @ 0x5593ee035500] ref B L1: 99.5% 0.5%
[libx264 @ 0x5593ee035500] kb/s:492.68
Exiting normally, received signal 2.

$ ffmpeg -hide_banner -i "http://medias2/catchup-mobile/replay/i/streaming-adaptatif_-dom-tom/2015/S53/J4/132862314-568584a2083cf-,standard1,standard2,standard3,standard4,.mp4.csmil/master.m3u8" \

-bsf:v mpeg4_unpack_bframes -bsf:a aac_adtstoasc
"$HOME/Desktop/video-$(date +"%m-%d-%y-%H-%M").mkv"
[http @ 0x562c2b9f56c0] No trailing CRLF found in HTTP header.
[h264 @ 0x562c2b9f4ec0] non-existing SPS 0 referenced in buffering period
Last message repeated 1 times
[http @ 0x562c2bb45660] No trailing CRLF found in HTTP header.
[h264 @ 0x562c2b9f58a0] non-existing SPS 0 referenced in buffering period
Last message repeated 1 times
[http @ 0x562c2ba7e5e0] No trailing CRLF found in HTTP header.
[h264 @ 0x562c2bb2a2e0] non-existing SPS 0 referenced in buffering period
Last message repeated 1 times
[http @ 0x562c2be4d780] No trailing CRLF found in HTTP header.
[h264 @ 0x562c2bd0b8e0] non-existing SPS 0 referenced in buffering period
Last message repeated 1 times
[h264 @ 0x562c2bb2b080] non-existing SPS 0 referenced in buffering period
[h264 @ 0x562c2ba7e140] non-existing SPS 0 referenced in buffering period
[h264 @ 0x562c2bb27fa0] non-existing SPS 0 referenced in buffering period
[h264 @ 0x562c2bafb7c0] non-existing SPS 0 referenced in buffering period
Input #0, hls,applehttp, from 'http://medias2.fr/catchup-mobile/replay/i/streaming-adaptatif_-dom-tom/2015/S53/J4/132862314-568584a2083cf-,standard1,standard2,standard3,standard4,.mp4.csmil/master.m3u8':
Duration: 01:20:47.40, start: 0.100667, bitrate: 0 kb/s
Program 0
Metadata:
variant_bitrate : 180000
Stream #0:0: Video: h264 (Constrained Baseline) ([27][0][0][0] / 0x001B), yuv420p, 256x144 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
Metadata:
variant_bitrate : 180000
Stream #0:1: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz, stereo, fltp, 66 kb/s
Metadata:
variant_bitrate : 180000
Program 1
Metadata:
variant_bitrate : 303000
Stream #0:2: Video: h264 (Constrained Baseline) ([27][0][0][0] / 0x001B), yuv420p, 320x180 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
Metadata:
variant_bitrate : 303000
Stream #0:3: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz, stereo, fltp, 66 kb/s
Metadata:
variant_bitrate : 303000
Program 2
Metadata:
variant_bitrate : 575000
Stream #0:4: Video: h264 (Constrained Baseline) ([27][0][0][0] / 0x001B), yuv420p, 512x288 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
Metadata:
variant_bitrate : 575000
Stream #0:5: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz, stereo, fltp, 66 kb/s
Metadata:
variant_bitrate : 575000
Program 3
Metadata:
variant_bitrate : 831000
Stream #0:6: Video: h264 (Main) ([27][0][0][0] / 0x001B), yuv420p, 704x396 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
Metadata:
variant_bitrate : 831000
Stream #0:7: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz, stereo, fltp, 66 kb/s
Metadata:
variant_bitrate : 831000
[libx264 @ 0x562c2c51e500] using SAR=1/1
[libx264 @ 0x562c2c51e500] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 AVX2 LZCNT BMI2
[libx264 @ 0x562c2c51e500] profile High, level 3.0
[libx264 @ 0x562c2c51e500] 264 - core 148 r2579 73ae2d1 - H.264/MPEG-4 AVC codec - Copyleft 2003-2015 - http://www.videolan.org/x264.html - options: cabac=1 ref=3 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=7 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=1 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=6 lookahead_threads=1 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=3 b_pyramid=2 b_adapt=1 b_bias=0 direct=1 weightb=1 open_gop=0 weightp=2 keyint=250 keyint_min=25 scenecut=40 intra_refresh=0 rc_lookahead=40 rc=crf mbtree=1 crf=23.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=1:1.00
[h264 @ 0x562c2c113a40] non-existing SPS 0 referenced in buffering period
Output #0, matroska, to '/home/master/Desktop/video-01-06-16-09-22.mkv':
Metadata:
encoder : Lavf56.40.101
Stream #0:0: Video: h264 (libx264) (H264 / 0x34363248), yuv420p, 704x396 [SAR 1:1 DAR 16:9], q=-1--1, 25 fps, 1k tbn, 25 tbc
Metadata:
variant_bitrate : 831000
encoder : Lavc56.60.100 libx264
Stream #0:1: Audio: vorbis (libvorbis) (oV[0][0] / 0x566F), 48000 Hz, stereo, fltp
Metadata:
variant_bitrate : 180000
encoder : Lavc56.60.100 libvorbis
Stream mapping:
Stream #0:6 -> #0:0 (h264 (native) -> h264 (libx264))
Stream #0:1 -> #0:1 (aac (native) -> vorbis (libvorbis))
Press [q] to stop, [?] for help
[hls,applehttp @ 0x562c2b9de380] No longer receiving playlist 1
[hls,applehttp @ 0x562c2b9de380] No longer receiving playlist 2
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
frame= 85 fps=0.0 q=-1.0 Lsize= 52kB time=00:00:03.55 bitrate= 119.2kbits/s
video:11kB audio:34kB subtitle:0kB other streams:0kB global headers:4kB muxing overhead: 14.455201%
[libx264 @ 0x562c2c51e500] frame I:1 Avg QP:15.49 size: 2567
[libx264 @ 0x562c2c51e500] frame P:22 Avg QP:14.72 size: 228
[libx264 @ 0x562c2c51e500] frame B:62 Avg QP:14.37 size: 50
[libx264 @ 0x562c2c51e500] consecutive B-frames: 2.4% 0.0% 3.5% 94.1%
[libx264 @ 0x562c2c51e500] mb I I16..4: 43.1% 54.4% 2.5%
[libx264 @ 0x562c2c51e500] mb P I16..4: 1.5% 0.0% 0.1% P16..4: 0.7% 0.2% 0.2% 0.0% 0.0% skip:97.2%
[libx264 @ 0x562c2c51e500] mb B I16..4: 0.0% 0.0% 0.0% B16..8: 1.1% 0.0% 0.0% direct: 0.1% skip:98.8% L0:64.7% L1:30.6% BI: 4.8%
[libx264 @ 0x562c2c51e500] 8x8 transform intra:40.6% inter:26.0%
[libx264 @ 0x562c2c51e500] coded y,uvDC,uvAC intra: 4.1% 47.7% 1.4% inter: 0.1% 0.2% 0.0%
[libx264 @ 0x562c2c51e500] i16 v,h,dc,p: 84% 10% 5% 1%
[libx264 @ 0x562c2c51e500] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 1% 19% 81% 0% 0% 0% 0% 0% 0%
[libx264 @ 0x562c2c51e500] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 40% 12% 29% 3% 3% 4% 4% 4% 3%
[libx264 @ 0x562c2c51e500] i8c dc,h,v,p: 80% 16% 3% 1%
[libx264 @ 0x562c2c51e500] Weighted P-Frames: Y:18.2% UV:4.5%
[libx264 @ 0x562c2c51e500] ref P L0: 82.6% 5.8% 5.4% 5.8% 0.4%
[libx264 @ 0x562c2c51e500] ref B L0: 71.3% 27.8% 0.9%
[libx264 @ 0x562c2c51e500] ref B L1: 98.2% 1.8%
[libx264 @ 0x562c2c51e500] kb/s:25.15
Exiting normally, received signal 2.

$ ffmpeg -hide_banner -i "http://medias2./catchup-mobile/replay/i/streaming-adaptatif_-dom-tom/2015/S53/J4/132862314-568584a2083cf-,standard1,standard2,standard3,standard4,.mp4.csmil/master.m3u8" \

-bsf:v mpeg4_unpack_bframes -bsf:a aac_adtstoasc
"$HOME/Desktop/video-$(date +"%m-%d-%y-%H-%M").mkv"
[http @ 0x55e25bb2e6c0] No trailing CRLF found in HTTP header.
[h264 @ 0x55e25bb2dec0] non-existing SPS 0 referenced in buffering period
Last message repeated 1 times
[http @ 0x55e25bc7e660] No trailing CRLF found in HTTP header.
[h264 @ 0x55e25bb2e8a0] non-existing SPS 0 referenced in buffering period
Last message repeated 1 times
[http @ 0x55e25bbb75e0] No trailing CRLF found in HTTP header.
[h264 @ 0x55e25bc632e0] non-existing SPS 0 referenced in buffering period
Last message repeated 1 times
[http @ 0x55e25bf86780] No trailing CRLF found in HTTP header.
[h264 @ 0x55e25be448e0] non-existing SPS 0 referenced in buffering period
Last message repeated 1 times
[h264 @ 0x55e25bc64080] non-existing SPS 0 referenced in buffering period
[h264 @ 0x55e25bbb7140] non-existing SPS 0 referenced in buffering period
[h264 @ 0x55e25bc60fa0] non-existing SPS 0 referenced in buffering period
[h264 @ 0x55e25bc347c0] non-existing SPS 0 referenced in buffering period
Input #0, hls,applehttp, from 'http://medias2/catchup-mobile/replay/i/streaming-adaptatif-dom-tom/2015/S53/J4/132862314-568584a2083cf-,standard1,standard2,standard3,standard4,.mp4.csmil/master.m3u8':
Duration: 01:20:47.40, start: 0.100667, bitrate: 0 kb/s
Program 0
Metadata:
variant_bitrate : 180000
Stream #0:0: Video: h264 (Constrained Baseline) ([27][0][0][0] / 0x001B), yuv420p, 256x144 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
Metadata:
variant_bitrate : 180000
Stream #0:1: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz, stereo, fltp, 66 kb/s
Metadata:
variant_bitrate : 180000
Program 1
Metadata:
variant_bitrate : 303000
Stream #0:2: Video: h264 (Constrained Baseline) ([27][0][0][0] / 0x001B), yuv420p, 320x180 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
Metadata:
variant_bitrate : 303000
Stream #0:3: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz, stereo, fltp, 66 kb/s
Metadata:
variant_bitrate : 303000
Program 2
Metadata:
variant_bitrate : 575000
Stream #0:4: Video: h264 (Constrained Baseline) ([27][0][0][0] / 0x001B), yuv420p, 512x288 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
Metadata:
variant_bitrate : 575000
Stream #0:5: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz, stereo, fltp, 66 kb/s
Metadata:
variant_bitrate : 575000
Program 3
Metadata:
variant_bitrate : 831000
Stream #0:6: Video: h264 (Main) ([27][0][0][0] / 0x001B), yuv420p, 704x396 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
Metadata:
variant_bitrate : 831000
Stream #0:7: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz, stereo, fltp, 66 kb/s
Metadata:
variant_bitrate : 831000
[libx264 @ 0x55e25c657500] using SAR=1/1
[libx264 @ 0x55e25c657500] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 AVX2 LZCNT BMI2
[libx264 @ 0x55e25c657500] profile High, level 3.0
[libx264 @ 0x55e25c657500] 264 - core 148 r2579 73ae2d1 - H.264/MPEG-4 AVC codec - Copyleft 2003-2015 - http://www.videolan.org/x264.html - options: cabac=1 ref=3 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=7 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=1 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=6 lookahead_threads=1 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=3 b_pyramid=2 b_adapt=1 b_bias=0 direct=1 weightb=1 open_gop=0 weightp=2 keyint=250 keyint_min=25 scenecut=40 intra_refresh=0 rc_lookahead=40 rc=crf mbtree=1 crf=23.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=1:1.00
[h264 @ 0x55e25c24ca40] non-existing SPS 0 referenced in buffering period
Output #0, matroska, to '/home/master/Desktop/video-01-06-16-09-23.mkv':
Metadata:
encoder : Lavf56.40.101
Stream #0:0: Video: h264 (libx264) (H264 / 0x34363248), yuv420p, 704x396 [SAR 1:1 DAR 16:9], q=-1--1, 25 fps, 1k tbn, 25 tbc
Metadata:
variant_bitrate : 831000
encoder : Lavc56.60.100 libx264
Stream #0:1: Audio: vorbis (libvorbis) (oV[0][0] / 0x566F), 48000 Hz, stereo, fltp
Metadata:
variant_bitrate : 180000
encoder : Lavc56.60.100 libvorbis
Stream mapping:
Stream #0:6 -> #0:0 (h264 (native) -> h264 (libx264))
Stream #0:1 -> #0:1 (aac (native) -> vorbis (libvorbis))
Press [q] to stop, [?] for help
[hls,applehttp @ 0x55e25bb17380] No longer receiving playlist 1
[hls,applehttp @ 0x55e25bb17380] No longer receiving playlist 2
frame= 35 fps=0.0 q=0.0 size= 5kB time=00:00:01.50 bitrate= 26.2kbits/s[libx264 @ 0x55e25c657500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x55e25c657500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x55e25c657500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x55e25c657500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x55e25c657500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x55e25c657500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x55e25c657500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x55e25c657500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x55e25c657500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x55e25c657500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x55e25c657500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x55e25c657500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x55e25c657500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x55e25c657500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x55e25c657500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x55e25c657500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x55e25c657500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x55e25c657500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x55e25c657500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x55e25c657500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
frame= 66 fps= 48 q=-1.0 Lsize= 41kB time=00:00:02.80 bitrate= 118.4kbits/s
video:8kB audio:27kB subtitle:0kB other streams:0kB global headers:4kB muxing overhead: 17.929157%
[libx264 @ 0x55e25c657500] frame I:1 Avg QP:15.49 size: 2567
[libx264 @ 0x55e25c657500] frame P:17 Avg QP:13.96 size: 187
[libx264 @ 0x55e25c657500] frame B:48 Avg QP:13.63 size: 31
[libx264 @ 0x55e25c657500] consecutive B-frames: 3.0% 0.0% 0.0% 97.0%
[libx264 @ 0x55e25c657500] mb I I16..4: 43.1% 54.4% 2.5%
[libx264 @ 0x55e25c657500] mb P I16..4: 0.4% 0.0% 0.0% P16..4: 0.6% 0.2% 0.2% 0.0% 0.0% skip:98.6%
[libx264 @ 0x55e25c657500] mb B I16..4: 0.0% 0.0% 0.0% B16..8: 0.4% 0.0% 0.0% direct: 0.0% skip:99.5% L0:59.1% L1:37.4% BI: 3.5%
[libx264 @ 0x55e25c657500] 8x8 transform intra:50.9% inter:23.0%
[libx264 @ 0x55e25c657500] coded y,uvDC,uvAC intra: 3.9% 49.1% 0.3% inter: 0.1% 0.1% 0.0%
[libx264 @ 0x55e25c657500] i16 v,h,dc,p: 88% 4% 8% 0%
[libx264 @ 0x55e25c657500] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 0% 18% 82% 0% 0% 0% 0% 0% 0%
[libx264 @ 0x55e25c657500] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 31% 14% 33% 2% 3% 4% 5% 4% 4%
[libx264 @ 0x55e25c657500] i8c dc,h,v,p: 88% 11% 2% 0%
[libx264 @ 0x55e25c657500] Weighted P-Frames: Y:5.9% UV:5.9%
[libx264 @ 0x55e25c657500] ref P L0: 88.7% 5.6% 3.6% 2.2%
[libx264 @ 0x55e25c657500] ref B L0: 54.3% 43.0% 2.7%
[libx264 @ 0x55e25c657500] kb/s:21.95
Exiting normally, received signal 2.

ffmpeg -hide_banner -i "http://medias2.fr/catchup-mobile/replay/i/streaming-adaptatif_-dom-tom/2015/S53/J4/132862314-568584a2083cf-,standard1,standard2,standard3,standard4,.mp4.csmil/master.m3u8"
-c:v copy -c:a copy
"$HOME/Desktop/video-$(date +"%m-%d-%y-%H-%M").mkv"

Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x5593ee035500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x5593ee035500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x5593ee035500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
frame= 210 fps=103 q=-1.0 Lsize= 599kB time=00:00:08.56 bitrate= 573.0kbits/s
video:506kB audio:84kB subtitle:0kB other streams:0kB global headers:4kB muxing overhead: 1.546587%
[libx264 @ 0x5593ee035500] frame I:1 Avg QP:15.49 size: 2567
[libx264 @ 0x5593ee035500] frame P:103 Avg QP:21.19 size: 4463
[libx264 @ 0x5593ee035500] frame B:106 Avg QP:19.43 size: 519
[libx264 @ 0x5593ee035500] consecutive B-frames: 20.0% 36.2% 5.7% 38.1%
[libx264 @ 0x5593ee035500] mb I I16..4: 43.1% 54.4% 2.5%
[libx264 @ 0x5593ee035500] mb P I16..4: 4.8% 8.2% 1.7% P16..4: 29.2% 6.8% 2.8% 0.0% 0.0% skip:46.4%
[libx264 @ 0x5593ee035500] mb B I16..4: 0.1% 0.1% 0.0% B16..8: 14.1% 1.0% 0.2% direct: 1.1% skip:83.4% L0:44.3% L1:49.3% BI: 6.4%
[libx264 @ 0x5593ee035500] 8x8 transform intra:55.3% inter:52.1%
[libx264 @ 0x5593ee035500] coded y,uvDC,uvAC intra: 34.2% 67.0% 20.2% inter: 9.4% 13.1% 0.8%
[libx264 @ 0x5593ee035500] i16 v,h,dc,p: 47% 27% 6% 19%
[libx264 @ 0x5593ee035500] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 10% 18% 50% 3% 4% 3% 5% 3% 5%
[libx264 @ 0x5593ee035500] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 16% 24% 19% 5% 9% 5% 11% 4% 7%
[libx264 @ 0x5593ee035500] i8c dc,h,v,p: 49% 30% 13% 8%
[libx264 @ 0x5593ee035500] Weighted P-Frames: Y:19.4% UV:14.6%
[libx264 @ 0x5593ee035500] ref P L0: 70.9% 11.3% 14.3% 3.1% 0.4%
[libx264 @ 0x5593ee035500] ref B L0: 89.7% 10.2% 0.1%
[libx264 @ 0x5593ee035500] ref B L1: 99.5% 0.5%
[libx264 @ 0x5593ee035500] kb/s:492.68
Exiting normally, received signal 2.

$ ffmpeg -hide_banner -i "http://medias2/catchup-mobile/replay/i/streaming-adaptatif_-dom-tom/2015/S53/J4/132862314-568584a2083cf-,standard1,standard2,standard3,standard4,.mp4.csmil/master.m3u8" \

-bsf:v mpeg4_unpack_bframes -bsf:a aac_adtstoasc
"$HOME/Desktop/video-$(date +"%m-%d-%y-%H-%M").mkv"
[http @ 0x562c2b9f56c0] No trailing CRLF found in HTTP header.
[h264 @ 0x562c2b9f4ec0] non-existing SPS 0 referenced in buffering period
Last message repeated 1 times
[http @ 0x562c2bb45660] No trailing CRLF found in HTTP header.
[h264 @ 0x562c2b9f58a0] non-existing SPS 0 referenced in buffering period
Last message repeated 1 times
[http @ 0x562c2ba7e5e0] No trailing CRLF found in HTTP header.
[h264 @ 0x562c2bb2a2e0] non-existing SPS 0 referenced in buffering period
Last message repeated 1 times
[http @ 0x562c2be4d780] No trailing CRLF found in HTTP header.
[h264 @ 0x562c2bd0b8e0] non-existing SPS 0 referenced in buffering period
Last message repeated 1 times
[h264 @ 0x562c2bb2b080] non-existing SPS 0 referenced in buffering period
[h264 @ 0x562c2ba7e140] non-existing SPS 0 referenced in buffering period
[h264 @ 0x562c2bb27fa0] non-existing SPS 0 referenced in buffering period
[h264 @ 0x562c2bafb7c0] non-existing SPS 0 referenced in buffering period
Input #0, hls,applehttp, from 'http://medias2/catchup-mobile/replay/i/streaming-adaptatif_-dom-tom/2015/S53/J4/132862314-568584a2083cf-,standard1,standard2,standard3,standard4,.mp4.csmil/master.m3u8':
Duration: 01:20:47.40, start: 0.100667, bitrate: 0 kb/s
Program 0
Metadata:
variant_bitrate : 180000
Stream #0:0: Video: h264 (Constrained Baseline) ([27][0][0][0] / 0x001B), yuv420p, 256x144 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
Metadata:
variant_bitrate : 180000
Stream #0:1: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz, stereo, fltp, 66 kb/s
Metadata:
variant_bitrate : 180000
Program 1
Metadata:
variant_bitrate : 303000
Stream #0:2: Video: h264 (Constrained Baseline) ([27][0][0][0] / 0x001B), yuv420p, 320x180 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
Metadata:
variant_bitrate : 303000
Stream #0:3: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz, stereo, fltp, 66 kb/s
Metadata:
variant_bitrate : 303000
Program 2
Metadata:
variant_bitrate : 575000
Stream #0:4: Video: h264 (Constrained Baseline) ([27][0][0][0] / 0x001B), yuv420p, 512x288 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
Metadata:
variant_bitrate : 575000
Stream #0:5: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz, stereo, fltp, 66 kb/s
Metadata:
variant_bitrate : 575000
Program 3
Metadata:
variant_bitrate : 831000
Stream #0:6: Video: h264 (Main) ([27][0][0][0] / 0x001B), yuv420p, 704x396 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
Metadata:
variant_bitrate : 831000
Stream #0:7: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz, stereo, fltp, 66 kb/s
Metadata:
variant_bitrate : 831000
[libx264 @ 0x562c2c51e500] using SAR=1/1
[libx264 @ 0x562c2c51e500] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 AVX2 LZCNT BMI2
[libx264 @ 0x562c2c51e500] profile High, level 3.0
[libx264 @ 0x562c2c51e500] 264 - core 148 r2579 73ae2d1 - H.264/MPEG-4 AVC codec - Copyleft 2003-2015 - http://www.videolan.org/x264.html - options: cabac=1 ref=3 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=7 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=1 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=6 lookahead_threads=1 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=3 b_pyramid=2 b_adapt=1 b_bias=0 direct=1 weightb=1 open_gop=0 weightp=2 keyint=250 keyint_min=25 scenecut=40 intra_refresh=0 rc_lookahead=40 rc=crf mbtree=1 crf=23.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=1:1.00
[h264 @ 0x562c2c113a40] non-existing SPS 0 referenced in buffering period
Output #0, matroska, to '/home/master/Desktop/video-01-06-16-09-22.mkv':
Metadata:
encoder : Lavf56.40.101
Stream #0:0: Video: h264 (libx264) (H264 / 0x34363248), yuv420p, 704x396 [SAR 1:1 DAR 16:9], q=-1--1, 25 fps, 1k tbn, 25 tbc
Metadata:
variant_bitrate : 831000
encoder : Lavc56.60.100 libx264
Stream #0:1: Audio: vorbis (libvorbis) (oV[0][0] / 0x566F), 48000 Hz, stereo, fltp
Metadata:
variant_bitrate : 180000
encoder : Lavc56.60.100 libvorbis
Stream mapping:
Stream #0:6 -> #0:0 (h264 (native) -> h264 (libx264))
Stream #0:1 -> #0:1 (aac (native) -> vorbis (libvorbis))
Press [q] to stop, [?] for help
[hls,applehttp @ 0x562c2b9de380] No longer receiving playlist 1
[hls,applehttp @ 0x562c2b9de380] No longer receiving playlist 2
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x562c2c51e500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
frame= 85 fps=0.0 q=-1.0 Lsize= 52kB time=00:00:03.55 bitrate= 119.2kbits/s
video:11kB audio:34kB subtitle:0kB other streams:0kB global headers:4kB muxing overhead: 14.455201%
[libx264 @ 0x562c2c51e500] frame I:1 Avg QP:15.49 size: 2567
[libx264 @ 0x562c2c51e500] frame P:22 Avg QP:14.72 size: 228
[libx264 @ 0x562c2c51e500] frame B:62 Avg QP:14.37 size: 50
[libx264 @ 0x562c2c51e500] consecutive B-frames: 2.4% 0.0% 3.5% 94.1%
[libx264 @ 0x562c2c51e500] mb I I16..4: 43.1% 54.4% 2.5%
[libx264 @ 0x562c2c51e500] mb P I16..4: 1.5% 0.0% 0.1% P16..4: 0.7% 0.2% 0.2% 0.0% 0.0% skip:97.2%
[libx264 @ 0x562c2c51e500] mb B I16..4: 0.0% 0.0% 0.0% B16..8: 1.1% 0.0% 0.0% direct: 0.1% skip:98.8% L0:64.7% L1:30.6% BI: 4.8%
[libx264 @ 0x562c2c51e500] 8x8 transform intra:40.6% inter:26.0%
[libx264 @ 0x562c2c51e500] coded y,uvDC,uvAC intra: 4.1% 47.7% 1.4% inter: 0.1% 0.2% 0.0%
[libx264 @ 0x562c2c51e500] i16 v,h,dc,p: 84% 10% 5% 1%
[libx264 @ 0x562c2c51e500] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 1% 19% 81% 0% 0% 0% 0% 0% 0%
[libx264 @ 0x562c2c51e500] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 40% 12% 29% 3% 3% 4% 4% 4% 3%
[libx264 @ 0x562c2c51e500] i8c dc,h,v,p: 80% 16% 3% 1%
[libx264 @ 0x562c2c51e500] Weighted P-Frames: Y:18.2% UV:4.5%
[libx264 @ 0x562c2c51e500] ref P L0: 82.6% 5.8% 5.4% 5.8% 0.4%
[libx264 @ 0x562c2c51e500] ref B L0: 71.3% 27.8% 0.9%
[libx264 @ 0x562c2c51e500] ref B L1: 98.2% 1.8%
[libx264 @ 0x562c2c51e500] kb/s:25.15
Exiting normally, received signal 2.

$ ffmpeg -hide_banner -i "http://medias2/catchup-mobile/replay/i/streaming-adaptatif_-dom-tom/2015/S53/J4/132862314-568584a2083cf-,standard1,standard2,standard3,standard4,.mp4.csmil/master.m3u8" \

-bsf:v mpeg4_unpack_bframes -bsf:a aac_adtstoasc
"$HOME/Desktop/video-$(date +"%m-%d-%y-%H-%M").mkv"
[http @ 0x55e25bb2e6c0] No trailing CRLF found in HTTP header.
[h264 @ 0x55e25bb2dec0] non-existing SPS 0 referenced in buffering period
Last message repeated 1 times
[http @ 0x55e25bc7e660] No trailing CRLF found in HTTP header.
[h264 @ 0x55e25bb2e8a0] non-existing SPS 0 referenced in buffering period
Last message repeated 1 times
[http @ 0x55e25bbb75e0] No trailing CRLF found in HTTP header.
[h264 @ 0x55e25bc632e0] non-existing SPS 0 referenced in buffering period
Last message repeated 1 times
[http @ 0x55e25bf86780] No trailing CRLF found in HTTP header.
[h264 @ 0x55e25be448e0] non-existing SPS 0 referenced in buffering period
Last message repeated 1 times
[h264 @ 0x55e25bc64080] non-existing SPS 0 referenced in buffering period
[h264 @ 0x55e25bbb7140] non-existing SPS 0 referenced in buffering period
[h264 @ 0x55e25bc60fa0] non-existing SPS 0 referenced in buffering period
[h264 @ 0x55e25bc347c0] non-existing SPS 0 referenced in buffering period
Input #0, hls,applehttp, from 'http://medias2/catchup-mobile/replay/i/streaming-adaptatif_-dom-tom/2015/S53/J4/132862314-568584a2083cf-,standard1,standard2,standard3,standard4,.mp4.csmil/master.m3u8':
Duration: 01:20:47.40, start: 0.100667, bitrate: 0 kb/s
Program 0
Metadata:
variant_bitrate : 180000
Stream #0:0: Video: h264 (Constrained Baseline) ([27][0][0][0] / 0x001B), yuv420p, 256x144 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
Metadata:
variant_bitrate : 180000
Stream #0:1: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz, stereo, fltp, 66 kb/s
Metadata:
variant_bitrate : 180000
Program 1
Metadata:
variant_bitrate : 303000
Stream #0:2: Video: h264 (Constrained Baseline) ([27][0][0][0] / 0x001B), yuv420p, 320x180 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
Metadata:
variant_bitrate : 303000
Stream #0:3: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz, stereo, fltp, 66 kb/s
Metadata:
variant_bitrate : 303000
Program 2
Metadata:
variant_bitrate : 575000
Stream #0:4: Video: h264 (Constrained Baseline) ([27][0][0][0] / 0x001B), yuv420p, 512x288 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
Metadata:
variant_bitrate : 575000
Stream #0:5: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz, stereo, fltp, 66 kb/s
Metadata:
variant_bitrate : 575000
Program 3
Metadata:
variant_bitrate : 831000
Stream #0:6: Video: h264 (Main) ([27][0][0][0] / 0x001B), yuv420p, 704x396 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
Metadata:
variant_bitrate : 831000
Stream #0:7: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz, stereo, fltp, 66 kb/s
Metadata:
variant_bitrate : 831000
[libx264 @ 0x55e25c657500] using SAR=1/1
[libx264 @ 0x55e25c657500] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 AVX2 LZCNT BMI2
[libx264 @ 0x55e25c657500] profile High, level 3.0
[libx264 @ 0x55e25c657500] 264 - core 148 r2579 73ae2d1 - H.264/MPEG-4 AVC codec - Copyleft 2003-2015 - http://www.videolan.org/x264.html - options: cabac=1 ref=3 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=7 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=1 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=6 lookahead_threads=1 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=3 b_pyramid=2 b_adapt=1 b_bias=0 direct=1 weightb=1 open_gop=0 weightp=2 keyint=250 keyint_min=25 scenecut=40 intra_refresh=0 rc_lookahead=40 rc=crf mbtree=1 crf=23.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=1:1.00
[h264 @ 0x55e25c24ca40] non-existing SPS 0 referenced in buffering period
Output #0, matroska, to '/home/master/Desktop/video-01-06-16-09-23.mkv':
Metadata:
encoder : Lavf56.40.101
Stream #0:0: Video: h264 (libx264) (H264 / 0x34363248), yuv420p, 704x396 [SAR 1:1 DAR 16:9], q=-1--1, 25 fps, 1k tbn, 25 tbc
Metadata:
variant_bitrate : 831000
encoder : Lavc56.60.100 libx264
Stream #0:1: Audio: vorbis (libvorbis) (oV[0][0] / 0x566F), 48000 Hz, stereo, fltp
Metadata:
variant_bitrate : 180000
encoder : Lavc56.60.100 libvorbis
Stream mapping:
Stream #0:6 -> #0:0 (h264 (native) -> h264 (libx264))
Stream #0:1 -> #0:1 (aac (native) -> vorbis (libvorbis))
Press [q] to stop, [?] for help
[hls,applehttp @ 0x55e25bb17380] No longer receiving playlist 1
[hls,applehttp @ 0x55e25bb17380] No longer receiving playlist 2
frame= 35 fps=0.0 q=0.0 size= 5kB time=00:00:01.50 bitrate= 26.2kbits/s[libx264 @ 0x55e25c657500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x55e25c657500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x55e25c657500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x55e25c657500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x55e25c657500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x55e25c657500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
[libx264 @ 0x55e25c657500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
[libx264 @ 0x55e25c657500] The mpeg4_unpack_bframes bitstream filter is only useful for mpeg4.
Failed to open bitstream filter mpeg4_unpack_bframes for stream 0 with codec libx264: Invalid argument
frame= 66 fps= 48 q=-1.0 Lsize= 41kB time=00:00:02.80 bitrate= 118.4kbits/s
video:8kB audio:27kB subtitle:0kB other streams:0kB global headers:4kB muxing overhead: 17.929157%
[libx264 @ 0x55e25c657500] frame I:1 Avg QP:15.49 size: 2567
[libx264 @ 0x55e25c657500] frame P:17 Avg QP:13.96 size: 187
[libx264 @ 0x55e25c657500] frame B:48 Avg QP:13.63 size: 31
[libx264 @ 0x55e25c657500] consecutive B-frames: 3.0% 0.0% 0.0% 97.0%
[libx264 @ 0x55e25c657500] mb I I16..4: 43.1% 54.4% 2.5%
[libx264 @ 0x55e25c657500] mb P I16..4: 0.4% 0.0% 0.0% P16..4: 0.6% 0.2% 0.2% 0.0% 0.0% skip:98.6%
[libx264 @ 0x55e25c657500] mb B I16..4: 0.0% 0.0% 0.0% B16..8: 0.4% 0.0% 0.0% direct: 0.0% skip:99.5% L0:59.1% L1:37.4% BI: 3.5%
[libx264 @ 0x55e25c657500] 8x8 transform intra:50.9% inter:23.0%
[libx264 @ 0x55e25c657500] coded y,uvDC,uvAC intra: 3.9% 49.1% 0.3% inter: 0.1% 0.1% 0.0%
[libx264 @ 0x55e25c657500] i16 v,h,dc,p: 88% 4% 8% 0%
[libx264 @ 0x55e25c657500] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 0% 18% 82% 0% 0% 0% 0% 0% 0%
[libx264 @ 0x55e25c657500] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 31% 14% 33% 2% 3% 4% 5% 4% 4%
[libx264 @ 0x55e25c657500] i8c dc,h,v,p: 88% 11% 2% 0%
[libx264 @ 0x55e25c657500] Weighted P-Frames: Y:5.9% UV:5.9%
[libx264 @ 0x55e25c657500] ref P L0: 88.7% 5.6% 3.6% 2.2%
[libx264 @ 0x55e25c657500] ref B L0: 54.3% 43.0% 2.7%
[libx264 @ 0x55e25c657500] kb/s:21.95
Exiting normally, received signal 2.

$ ffmpeg -hide_banner -i "http://medias2/catchup-mobile/replay/i/streaming-adaptatif_-dom-tom/2015/S53/J4/132862314-568584a2083cf-,standard1,standard2,standard3,standard4,.mp4.csmil/master.m3u8" \

-c:v copy -c:a copy
"$HOME/Desktop/video-$(date +"%m-%d-%y-%H-%M").mkv"
[http @ 0x5608422e36c0] No trailing CRLF found in HTTP header.
[h264 @ 0x5608422e2ec0] non-existing SPS 0 referenced in buffering period
Last message repeated 1 times
[http @ 0x560842433660] No trailing CRLF found in HTTP header.
[h264 @ 0x5608422e38a0] non-existing SPS 0 referenced in buffering period
Last message repeated 1 times
[http @ 0x56084236c5e0] No trailing CRLF found in HTTP header.
[h264 @ 0x5608424182e0] non-existing SPS 0 referenced in buffering period
Last message repeated 1 times
[http @ 0x56084273b780] No trailing CRLF found in HTTP header.
[h264 @ 0x5608425f98e0] non-existing SPS 0 referenced in buffering period
Last message repeated 1 times
[h264 @ 0x560842419080] non-existing SPS 0 referenced in buffering period
[h264 @ 0x56084236c140] non-existing SPS 0 referenced in buffering period
[h264 @ 0x560842415fa0] non-existing SPS 0 referenced in buffering period
[h264 @ 0x5608423e97c0] non-existing SPS 0 referenced in buffering period
Input #0, hls,applehttp, from 'http://medias2/catchup-mobile/replay/i/streaming-adaptatif-dom-tom/2015/S53/J4/132862314-568584a2083cf-,standard1,standard2,standard3,standard4,.mp4.csmil/master.m3u8':
Duration: 01:20:47.40, start: 0.100667, bitrate: 0 kb/s
Program 0
Metadata:
variant_bitrate : 180000
Stream #0:0: Video: h264 (Constrained Baseline) ([27][0][0][0] / 0x001B), yuv420p, 256x144 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
Metadata:
variant_bitrate : 180000
Stream #0:1: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz, stereo, fltp, 66 kb/s
Metadata:
variant_bitrate : 180000
Program 1
Metadata:
variant_bitrate : 303000
Stream #0:2: Video: h264 (Constrained Baseline) ([27][0][0][0] / 0x001B), yuv420p, 320x180 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
Metadata:
variant_bitrate : 303000
Stream #0:3: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz, stereo, fltp, 66 kb/s
Metadata:
variant_bitrate : 303000
Program 2
Metadata:
variant_bitrate : 575000
Stream #0:4: Video: h264 (Constrained Baseline) ([27][0][0][0] / 0x001B), yuv420p, 512x288 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
Metadata:
variant_bitrate : 575000
Stream #0:5: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz, stereo, fltp, 66 kb/s
Metadata:
variant_bitrate : 575000
Program 3
Metadata:
variant_bitrate : 831000
Stream #0:6: Video: h264 (Main) ([27][0][0][0] / 0x001B), yuv420p, 704x396 [SAR 1:1 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
Metadata:
variant_bitrate : 831000
Stream #0:7: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz, stereo, fltp, 66 kb/s
Metadata:
variant_bitrate : 831000
[matroska @ 0x560842e0d660] Codec for stream 0 does not use global headers but container format requires global headers
[matroska @ 0x560842e0d660] Codec for stream 1 does not use global headers but container format requires global headers
[matroska @ 0x560842e0d660] Error parsing AAC extradata, unable to determine samplerate.
Output #0, matroska, to '/home/master/Desktop/video-01-06-16-09-26.mkv':
Metadata:
encoder : Lavf56.40.101
Stream #0:0: Video: h264 (H264 / 0x34363248), yuv420p, 704x396 [SAR 1:1 DAR 16:9], q=2-31, 25 fps, 25 tbr, 1k tbn, 90k tbc
Metadata:
variant_bitrate : 831000
Stream #0:1: Audio: aac ([255][0][0][0] / 0x00FF), 48000 Hz, stereo, 66 kb/s
Metadata:
variant_bitrate : 180000
Stream mapping:
Stream #0:6 -> #0:0 (copy)
Stream #0:1 -> #0:1 (copy)
Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument

rip-xiptv

I dont know what happened but its not working when you type in the number to play. The links shouldnt be expired, they still play. It justs skips it/jumps:

steve@steve-Satellite-C655D:$ cd Desktop
steve@steve-Satellite-C655D:
/Desktop$ rip-xiptv
enter a directory path: ~/Documents/schedule

  1. quit 68) ifceast
  2. 4seven 69) ioneast
  3. 5star 70) irishtv
  4. 5usa 71) itv
  5. abcfamily 72) itv2
  6. abcnews 73) itv3
  7. actionmaxeast 74) itv4
  8. a&eeast 75) itvbe
  9. alibi 76) itvencore
  10. amc 77) lifetimeeast
  11. amceast 78) more4
  12. animalplanet 79) movies24
  13. bbc1 80) msnbc
  14. bbc2 81) nationalgeowild
  15. bbc4 82) nickelodeon
  16. bbcamerica 83) nickjr
  17. boomerang 84) ovation
  18. cbsaction 85) oxygen
  19. cbsdrama 86) pick
  20. challenge 87) really
  21. channel4 88) rt
  22. channel5 89) documentary
  23. chiller 90) rte2
  24. cinemaxeast 91) rteone
  25. cinemaxwest 92) sciencechannel
  26. cinu 93) showtime2east
  27. comedycentraleast 94) showtimebeyondeast
  28. cookingchannel 95) showtimeeast
  29. dave 96) showtimeextremeeast
  30. destinationamerica 97) showtimenext
  31. discoverychannelusa 98) showtimewest
  32. discoveryfamily 99) skyaction&adventure
  33. discoveryhistory 100) skyatlantic
  34. discoveryturbo 101) skycrime&thriller
  35. disneychanneleast 102) skydisney
  36. disneyjr 103) skydrama
  37. disneyxd 104) skyfamily
  38. dmax 105) skymoderngreats
  39. drama 106) skyone
  40. dyinetworkusa 107) skypremiere
  41. e! 108) skyscfiandhorror
  42. e4 109) skyselect
  43. eden 110) sonymovie
  44. encoreactioneast 111) starcinemaeast
  45. encoreeast 112) staredgeeast
  46. encorewestern 113) starzkidsandfamilyeast
  47. film4 114) starzwest
  48. foodnetworkeast 115) syfy
  49. fox 116) tbseast
  50. fxeast 117) tcmus
  51. fxxeast 118) teennick
  52. gold 119) tg4
  53. goodfood 120) themoviechanneleast
  54. h2usa 121) themoviechannelextraeast
  55. hallmarkmoviesandmystery 122) thrillermaxeast
  56. hbo2 123) tlc
  57. hbo2east 124) tnt
  58. hbo2west 125) truedrama
  59. hbocomedyeast 126) truemovie1
  60. hbofamilyeast 127) truemovies2
  61. hbo 128) trutveast
  62. signature 129) tvland
  63. hbosignatureeast 130) usanetworkeast
  64. hbowest 131) watch
  65. hgtveast 132) wetv
  66. history 133) wgn
  67. id 134) yesterday

rip-record

hi for some strange reason windows 10 throws this error when running the comand bash rip-record vid1.txt -t 00:01:00

/Desktop/video-2016-11-22-17-21-24.mkv: No such file or directory

is there a file permission that i am missing ?

Open new VLC window each time

Hi, great work you have done here. I have one question: is it possible to have VLC open in a new VLC window each time i select to play a video with VLC? The issue is that once i select a video to play with VLC, if i try to select another Kodi gets stuck, and only unsticks when I quit the current running VLC window. It would be nice to have a new VLC window open without having to quit the old one.

I'm using Kodi 17 on a Mac.

MLB.tv Recording

Hi Mr Napoleon .

I'm apologizing if I did something wrong , I just need your help .
You're really a nice person , I'm just was confused that I won't finish my task before the deadline .

my account in Kodi Forum is banned since I tried to post 10 posts to unlock the pm message ,

So as you can see , I do have nothing to communicate with you now .
Please Can you help me with this .
it would be a life saver for me .

thanks .

forked process 8472 died unexpectedly

Well.. it doesnt work for me. I tried it once on mac.. i tried it this time on windows.. and it doesn't work.. i am doing everything exactly in the steps mentioned in the video in you tube as well on here but it doesnt work.

Right now when i click play in kodi it gives this error:

stack 0x600000 - 0x800000, (child has 0x400000 - 0x600000), Win32 error 487
Stack trace:
Frame Function Args
00000000000 00180071F8E (00180212FDC, 00180212E86, 00000400000, 000005FEE10)
00000000000 00180046E22 (000005FFE78, 00000000000, 00000000000, 00000002000)
00000000000 00180046E62 (00000600000, 00000800000, 00000400000, 00000600000)
00000000000 00180047161 (00000000000, 00100401000, 000002DE000, 00000000000)
00000000000 001800471AE (00000000000, 00000000000, 00000000000, 00000000000)
00000000000 00100472DD1 (00000000000, 00000000000, 00000000000, 00000000000)
00000000000 00100401010 (00000000000, 00000000000, 00000000000, 00100401000)
00000000000 7FFBB9748102 (00000000000, 00000000000, 00000000000, 00000000000)
00000000000 7FFBBAF2C2E4 (00000000000, 00000000000, 00000000000, 00000000000)
End of stack trace
1 [main] bash 7064 fork: child -1 - forked process 6296 died unexpectedly, retry 0, exit code 0x100, errno 11
/cygdrive/c/Users/XXXXXXXX/git/kodi-playercorefactory/bash-scripts-windows/rip-play: fork: retry: No child processes
1036800 [main] bash 5400 C:\cygwin\bin\bash.exe: *** fatal error in forked process - fork: can't reserve memory for parent stack 0x600000 - 0x800000, (child has 0x400000 - 0x600000), Win32 error 487
Stack trace:
Frame Function Args
00000000000 00180071F8E (00180212FDC, 00180212E86, 00000400000, 000005FEE10)
00000000000 00180046E22 (000005FFE78, 00000000000, 00000000000, 00000002000)
00000000000 00180046E62 (00000600000, 00000800000, 00000400000, 00000600000)
00000000000 00180047161 (00000000000, 00100401000, 00000332000, 00000000000)
00000000000 001800471AE (00000000000, 00000000000, 00000000000, 00000000000)
00000000000 00100472DD1 (00000000000, 00000000000, 00000000000, 00000000000)
00000000000 00100401010 (00000000000, 00000000000, 00000000000, 00100401000)
00000000000 7FFBB9748102 (00000000000, 00000000000, 00000000000, 00000000000)
00000000000 7FFBBAF2C2E4 (00000000000, 00000000000, 00000000000, 00000000000)
End of stack trace
1071218 [main] bash 7064 fork: child -1 - forked process 5400 died unexpectedly, retry 0, exit code 0x100, errno 11
/cygdrive/c/Users/XXXXXXXXXX/git/kodi-playercorefactory/bash-scripts-windows/rip-play: fork: retry: No child processes
3137914 [main] bash 5520 C:\cygwin\bin\bash.exe: *** fatal error in forked process - fork: can't reserve memory for parent stack 0x600000 - 0x800000, (child has 0x400000 - 0x600000), Win32 error 487
Stack trace:
Frame Function Args
00000000000 00180071F8E (00180212FDC, 00180212E86, 00000400000, 000005FEE10)
00000000000 00180046E22 (000005FFE78, 00000000000, 00000000000, 00000002000)
00000000000 00180046E62 (00000600000, 00000800000, 00000400000, 00000600000)
00000000000 00180047161 (00000000000, 00100401000, 000003DE000, 00000000000)
00000000000 001800471AE (00000000000, 00000000000, 00000000000, 00000000000)
00000000000 00100472DD1 (00000000000, 00000000000, 00000000000, 00000000000)
00000000000 00100401010 (00000000000, 00000000000, 00000000000, 00100401000)
00000000000 7FFBB9748102 (00000000000, 00000000000, 00000000000, 00000000000)
00000000000 7FFBBAF2C2E4 (00000000000, 00000000000, 00000000000, 00000000000)
End of stack trace
3212324 [main] bash 7064 fork: child -1 - forked process 5520 died unexpectedly, retry 0, exit code 0x100, errno 11
/cygdrive/c/Users/XXXXXXXXXX/git/kodi-playercorefactory/bash-scripts-windows/rip-play: fork: retry: No child processes
7294761 [main] bash 8472 C:\cygwin\bin\bash.exe: *** fatal error in forked process - fork: can't reserve memory for parent stack 0x600000 - 0x800000, (child has 0x400000 - 0x600000), Win32 error 487
Stack trace:
Frame Function Args
00000000000 00180071F8E (00180212FDC, 00180212E86, 00000400000, 000005FEE10)
00000000000 00180046E22 (000005FFE78, 00000000000, 00000000000, 00000002000)
00000000000 00180046E62 (00000600000, 00000800000, 00000400000, 00000600000)
00000000000 00180047161 (00000000000, 00100401000, 0000024D000, 00000000000)
00000000000 001800471AE (00000000000, 00000000000, 00000000000, 00000000000)
00000000000 00100472DD1 (00000000000, 00000000000, 00000000000, 00000000000)
00000000000 00100401010 (00000000000, 00000000000, 00000000000, 00100401000)
00000000000 7FFBB9748102 (00000000000, 00000000000, 00000000000, 00000000000)
00000000000 7FFBBAF2C2E4 (00000000000, 00000000000, 00000000000, 00000000000)
End of stack trace
75059569 [main] bash 7064 fork: child -1 - forked process 8472 died unexpectedly, retry 0, exit code 0x100, errno 11
/cygdrive/c/Users/XXXXXXXXXX/git/kodi-playercorefactory/bash-scripts-windows/rip-play: fork: retry: No child processes

Do you have any ideas why?

P.S. - i havent executed the below steps -
windows notify-send
unzip the notify-send.zip
add notify-send to windows system path
windows install aria2c

because i feel they are optional to the working. Are they?

FOX Newsrecording errors

Hi Dear: Napoleon
I just gave up on recording from Android TV box (Beelink I68) because I lack Linux coding and expertise.
But, now I am having problem FOX NEWS when using the “Y” key to play and record. It starts to work but it suddenly quits. I will attach the text of Videourl.txt and the error I get using command line “bash rip-record videourl.txt”. My device is laptop Win10Pro 64bit with 8 gig RAM.
Thank you so much for the help and wish a happy holiday

BBC America Video URL text that plays and records.
http://31.220.40.117:80/LiveEdge/BBCAmericaHD/chunklist_w1501351379_b1000000.m3u8?token=2427b69e291e20dafd3e6a95f8559678
Fox News Video Url that does not work.
http://foxnews-f.akamaihd.net/i/BrightCove/694940094001/2015/12/20/694940094001_466921,7038001_4669207233001,7007001_4669207233001,7022001_4669207233001,6490001_4669207233001,7067001_4669207233001,.mp4.csmil/master.m3u8
“”Recording errors before updating windows scripts today””
C:\Users\Boby\Desktop>bash rip-record videourl.txt
Input #0, hls,applehttp, from 'http://foxnews-f.akamaihd.net/i/BrightCove/694940094001/2015/12/20/694940094001_466921,7038001_4669207233001,7007001_4669207233001,7022001_4669207233001,6490001_4669207233001,7067001_4669207233001,.mp4.csmil/master.m3u8 ':
Duration: 00:04:17.67, start: 0.100511, bitrate: 0 kb/s
Program 0
Metadata:
variant_bitrate : 145000
Stream #0:0: Video: h264 (Constrained Baseline) ([27][0][0][0] / 0x001B), yuv420p, 320x180 [SAR 1:1 DAR 16:9], 15 fps, 15 tbr, 90k tbn, 30 tbc
Metadata:
variant_bitrate : 145000
Stream #0:1: Audio: aac (LC) ([15][0][0][0] / 0x000F), 44100 Hz, stereo, fltp, 54 kb/s
Metadata:
variant_bitrate : 145000
Program 1
Metadata:
variant_bitrate : 312000
Stream #0:2: Video: h264 (Constrained Baseline) ([27][0][0][0] / 0x001B), yuv420p, 476x268 [SAR 1072:1071 DAR 16:9], 29.97 fps, 29.97 tbr, 90k tbn, 59.94 tbc
Metadata:
variant_bitrate : 312000
Stream #0:3: Audio: aac (LC) ([15][0][0][0] / 0x000F), 44100 Hz, stereo, fltp, 63 kb/s
Metadata:
variant_bitrate : 312000
Program 2
Metadata:
variant_bitrate : 488000
Stream #0:4: Video: h264 (Constrained Baseline) ([27][0][0][0] / 0x001B), yuv420p, 640x360 [SAR 1:1 DAR 16:9], 29.97 fps, 29.97 tbr, 90k tbn, 59.94 tbc
Metadata:
variant_bitrate : 488000
Stream #0:5: Audio: aac (LC) ([15][0][0][0] / 0x000F), 44100 Hz, stereo, fltp, 63 kb/s
Metadata:
variant_bitrate : 488000
Program 3
Metadata:
variant_bitrate : 890000
Stream #0:6: Video: h264 (Constrained Baseline) ([27][0][0][0] / 0x001B), yuv420p, 640x360 [SAR 1:1 DAR 16:9], 29.97 fps, 29.97 tbr, 90k tbn, 59.94 tbc
Metadata:
variant_bitrate : 890000
Stream #0:7: Audio: aac (LC) ([15][0][0][0] / 0x000F), 44100 Hz, stereo, fltp, 63 kb/s
Metadata:
variant_bitrate : 890000
Program 4
Metadata:
variant_bitrate : 1335000
Stream #0:8: Video: h264 (Constrained Baseline) ([27][0][0][0] / 0x001B), yuv420p, 640x360 [SAR 1:1 DAR 16:9], 29.97 fps, 29.97 tbr, 90k tbn, 59.94 tbc
Metadata:
variant_bitrate : 1335000
Stream #0:9: Audio: aac (LC) ([15][0][0][0] / 0x000F), 44100 Hz, stereo, fltp, 63 kb/s
Metadata:
variant_bitrate : 1335000
Program 5
Metadata:
variant_bitrate : 58000
Stream #0:10: Audio: aac (LC) ([15][0][0][0] / 0x000F), 44100 Hz, stereo, fltp, 65 kb/s
Metadata:
variant_bitrate : 58000
[matroska @ 000002a05f5947c0] Codec for stream 0 does not use global headers but container format requires global headers
[matroska @ 000002a05f5947c0] Codec for stream 1 does not use global headers but container format requires global headers
[matroska @ 000002a05f5947c0] Error parsing AAC extradata, unable to determine samplerate.
Output #0, matroska, to 'C:\Users\Boby/Desktop/video.mkv':
Metadata:
encoder : Lavf57.19.100
Stream #0:0: Video: h264 (H264 / 0x34363248), yuv420p, 640x360 [SAR 1:1 DAR 16:9], q=2-31, 29.97 fps, 29.97 tbr, 1k tbn, 90k tbc
Metadata:
variant_bitrate : 488000
Stream #0:1: Audio: aac ([255][0][0][0] / 0x00FF), 44100 Hz, stereo, 54 kb/s
Metadata:
variant_bitrate : 145000
Stream mapping:
Stream #0:4 -> #0:0 (copy)
Stream #0:1 -> #0:1 (copy)
Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument.

“”Recording errors after updating windows scripts today FOX NEWS videourl.txt””
C:\Users\Boby\Desktop>bash rip-record videourl.txt
[h264 @ 0000028e6c7cd500] non-existing SPS 0 referenced in buffering period
Last message repeated 1 times
[h264 @ 0000028e6c7b8420] non-existing SPS 0 referenced in buffering period
Last message repeated 1 times
[h264 @ 0000028e6d3012e0] non-existing SPS 0 referenced in buffering period
Last message repeated 1 times
[h264 @ 0000028e6d589b80] non-existing SPS 0 referenced in buffering period
Last message repeated 1 times
[h264 @ 0000028e6c7b3e20] non-existing SPS 0 referenced in buffering period
Last message repeated 1 times
[h264 @ 0000028e6c7b4740] non-existing SPS 0 referenced in buffering period
Last message repeated 1 times
[h264 @ 0000028e6d327c60] non-existing SPS 0 referenced in buffering period
[h264 @ 0000028e6d2a5940] non-existing SPS 0 referenced in buffering period
[h264 @ 0000028e6d3084e0] non-existing SPS 0 referenced in buffering period
[h264 @ 0000028e6c7b5060] non-existing SPS 0 referenced in buffering period
[h264 @ 0000028e6c7b5e20] non-existing SPS 0 referenced in buffering period
[h264 @ 0000028e6d35e080] non-existing SPS 0 referenced in buffering period
Input #0, hls,applehttp, from 'http://foxnews-f.akamaihd.net/i/2015/12/24/PKG0243-122315TSAPKG-5L0FKTGA_FNC_,XLOW,LOW,MED_LOW,MED,HIGH,HD,.mp4.csmil/master.m3u8':
Duration: 00:02:43.73, start: 0.100511, bitrate: 0 kb/s
Program 0
Metadata:
variant_bitrate : 170000
Stream #0:0: Video: h264 (Baseline) ([27][0][0][0] / 0x001B), yuv420p(tv), 320x180 [SAR 45:45 DAR 16:9], 15 fps, 15 tbr, 90k tbn, 30 tbc
Metadata:
variant_bitrate : 170000
Stream #0:1: Audio: aac (LC) ([15][0][0][0] / 0x000F), 44100 Hz, stereo, fltp, 62 kb/s
Metadata:
variant_bitrate : 170000
Program 1
Metadata:
variant_bitrate : 359000
Stream #0:2: Video: h264 (Baseline) ([27][0][0][0] / 0x001B), yuv420p(tv), 480x268 [SAR 134:135 DAR 16:9], 29.97 fps, 29.97 tbr, 90k tbn, 59.94 tbc
Metadata:
variant_bitrate : 359000
Stream #0:3: Audio: aac (LC) ([15][0][0][0] / 0x000F), 44100 Hz, stereo, fltp, 66 kb/s
Metadata:
variant_bitrate : 359000
Program 2
Metadata:
variant_bitrate : 559000
Stream #0:4: Video: h264 (Baseline) ([27][0][0][0] / 0x001B), yuv420p(tv), 640x360 [SAR 90:90 DAR 16:9], 29.97 fps, 29.97 tbr, 90k tbn, 59.94 tbc
Metadata:
variant_bitrate : 559000
Stream #0:5: Audio: aac (LC) ([15][0][0][0] / 0x000F), 44100 Hz, stereo, fltp, 66 kb/s
Metadata:
variant_bitrate : 559000
Program 3
Metadata:
variant_bitrate : 1059000
Stream #0:6: Video: h264 (Baseline) ([27][0][0][0] / 0x001B), yuv420p(tv), 640x360 [SAR 90:90 DAR 16:9], 29.97 fps, 29.97 tbr, 90k tbn, 59.94 tbc
Metadata:
variant_bitrate : 1059000
Stream #0:7: Audio: aac (LC) ([15][0][0][0] / 0x000F), 44100 Hz, stereo, fltp, 66 kb/s
Metadata:
variant_bitrate : 1059000
Program 4
Metadata:
variant_bitrate : 1559000
Stream #0:8: Video: h264 (Baseline) ([27][0][0][0] / 0x001B), yuv420p(tv), 640x360 [SAR 90:90 DAR 16:9], 29.97 fps, 29.97 tbr, 90k tbn, 59.94 tbc
Metadata:
variant_bitrate : 1559000
Stream #0:9: Audio: aac (LC) ([15][0][0][0] / 0x000F), 44100 Hz, stereo, fltp, 66 kb/s
Metadata:
variant_bitrate : 1559000
Program 5
Metadata:
variant_bitrate : 2558000
Stream #0:10: Video: h264 (Baseline) ([27][0][0][0] / 0x001B), yuv420p(tv), 1280x720 [SAR 180:180 DAR 16:9], 29.97 fps, 29.97 tbr, 90k tbn, 59.94 tbc
Metadata:
variant_bitrate : 2558000
Stream #0:11: Audio: aac (LC) ([15][0][0][0] / 0x000F), 44100 Hz, stereo, fltp, 66 kb/s
Metadata:
variant_bitrate : 2558000
Program 6
Metadata:
variant_bitrate : 61000
Stream #0:12: Audio: aac (LC) ([15][0][0][0] / 0x000F), 44100 Hz, stereo, fltp, 66 kb/s
Metadata:
variant_bitrate : 61000
[matroska @ 0000028e6fb39020] Codec for stream 0 does not use global headers but container format requires global headers
[matroska @ 0000028e6fb39020] Codec for stream 1 does not use global headers but container format requires global headers
[matroska @ 0000028e6fb39020] Error parsing AAC extradata, unable to determine samplerate.
Output #0, matroska, to 'C:\Users\Boby/Desktop/video.mkv':
Metadata:
encoder : Lavf57.19.100
Stream #0:0: Video: h264 (H264 / 0x34363248), yuv420p, 1280x720 [SAR 180:180 DAR 16:9], q=2-31, 29.97 fps, 29.97 tbr, 1k tbn, 90k tbc
Metadata:
variant_bitrate : 2558000
Stream #0:1: Audio: aac ([255][0][0][0] / 0x00FF), 44100 Hz, stereo, 62 kb/s
Metadata:
variant_bitrate : 170000
Stream mapping:
Stream #0:10 -> #0:0 (copy)
Stream #0:1 -> #0:1 (copy)
Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument

Installing Kodi 17

Hi, Would you know how to upgrade 16.1 Jarvis to Kodi 17 Krypton? I tried a couple ways to do it but no luck upgrading kodi to 17 in Ubuntu Mate.
Thanks
Steve

Favourites-to-m3u

How does a person use the script favourites-to-m3u, i dont know if you have a video on this one. If its what Im thinking , that will be cool.

m3u

What happened here, i tried to create an m3u playlist but this happened:
steve@steve-Satellite-C655D:/Desktop$ ls
iptv kodi2
steve@steve-Satellite-C655D:
/Desktop$ m3u-playlist-creator
enter a directory path to txt files: iptv
cat: iptv/Sky: No such file or directory
cat: 1.txt: No such file or directory
cat: iptv/Sky: No such file or directory
cat: Comedy.txt: No such file or directory
cat: iptv/Sky: No such file or directory
cat: Disney.txt: No such file or directory
cat: iptv/sky: No such file or directory
cat: movie: No such file or directory
cat: action.txt: No such file or directory
cat: iptv/sky: No such file or directory
cat: movie: No such file or directory
cat: crime.txt: No such file or directory
cat: iptv/sky: No such file or directory
cat: movie: No such file or directory
cat: drama.txt: No such file or directory
cat: iptv/sky: No such file or directory

windows 10

I Upgraded to windows 10 but i still have ubuntu, the reason why i switched back to windows is that ubuntu doesnt have a pvr that windows has. To make it short, I watched your video for installing it on windows and i used step by step like in the video, saving url worked fine but when i used the command "bash" before a script in the terminal, it says bash is not a recognized command. I tried the rip-record-batch and that is what it says. I am hoping windows 10 is not like windows 7 error/bug thingy.

scheduling with at

I actually having it recording to desktop with at finally but when time to play the video with any player, it looks like it didnt recorded but it left a .mkv video on desktop, weird.

Android Device

HI NapoleonWilson, how hard would it be to put linux and your program on an android? I think you mentioned something in your videos about it, but not sure.

Recording catch up TV

Hi Napole0n,

I can record and save the major "live" TV channels using Kodi and switching to the VLC player. But it doesn't work when I try to record "catch up" TV from the hub or iplayer. It goes through the motions and appears to be recording whilst playing in the background, but when I check later there is no file saved - anywhere.
I'm more than likely doing something wrong somewhere. Have you any advice or a video I can check out. Hope this makes sense.

Many Thanks
Sparkplugs

scheduling with Vlc

Is it possible to schedule vlc to record with the text url link that a person save from a live channel?
Like at 3pm tonight and schedule it to stop after a movie/tv show ends?

Issue with latest version of playercorefactory

Hi Napoleon

Having a few interesting issues since the last update. When recording a live stream (rip-record), I get a message that the option reconnect is not found:

url matches: $rtmp bash pattern
Recording: 'rtmpe://94.102.49.194/live?wmsAuthSign=c2VydmVyX3RpbWU9MTAvOS8yMDE2IDE6MDU6MzUgQU0maGFzaF92YWx1ZT1ERGJ5T1pZekx1K1kwZHBxYzFlWnJ3PT0mdmFsaWRtaW51dGVzPTEw playpath=qvWQUv36A0_4165 swfUrl=http://cast4u.tv/jwplayer/jwplayer.flash.swf token=%XB00(nKH@#. flashver=WIN\2023,0,0,162 live=1 timeout=15 pageUrl=http://www.cast4u.tv/embed.php?v=skys3&vw=700&vh=480'
Option reconnect not found.

No recording occurs.

However, when recording a different live stream (with a bash pattern of m3u8token) recording does occur.

I am using OSMC (Debian) on a rasp pi 3.

Cheers
Robbo

video-link-checker

not recognizing renamed m3u links from m3u-pastebin-ripper
replying with no file found

i4atv

Sorry to bug you again, but is the i4atv plugin is that only for firestick? I see its in your playlist custom addon.ini with alot of channels setup.

downgrading

How do we downgrade from kodi 18 back to kodi 16.1 cause kodi 18 sucks and lags bad , sorry about the language

                                                                          Thanks
                                                                         steve

scheduling with at

I checked out the video of scheduling with at and i thought it was pretty cool of course all your videos are awesome, but back to scheduling with at here I tried:

steve@steve-Satellite-C655D:~/Desktop$ at now + 1 min
warning: commands will be executed using /bin/sh
at> rip-ffmpeg-xforward ~/Documents/schedule/animalplanet.txt
job 15 at Thu Jul 14 05:30:00 2016.
am i supposed to download a script "rip-ffmpeg-xforward"
But no video on desktop.

Not working under OS X 10.11.1

Hi, I've followed the instructions and i can't get anything to work.
eg...If i select a stream then choose 'record', the recording doesn't start.
If i look in my kodi log, i see this line:

13:28:09 T:123145303453696 NOTICE: ExecuteAppLinux: ""$HOME/git/kodi-playercorefactory/bash-scripts-macosx/rip-record"" "http://someiptvstreamhere.m3u8" -t 00:30:00 &

if i copy that command into terminal and run it manually, the recording starts as expected, just not from within kodi.

I've verified my .bash_profile is setup as suggested, and i can call the executables (ffmpeg,ffprobe,etc) just fine.
Im using kodi 15.2

Any suggestions?

Video 51 of Yours

Hi I was watching your video #51 about kodi checking iptv playlists for dead links with ffprobe and it looks pretty interesting, can you please explain to me a little more how to do cause Im interested but I am having a few blonde moments lately and I was trying to keep up with your videos but no luck

Recording

I tried to set a recording with Usa Network for 5 minutes but it didnt record but left a .mkv file. Here is my settings;

steve@steve-Satellite-C655D:/Desktop$ sudo service atd start
steve@steve-Satellite-C655D:
/Desktop$
steve@steve-Satellite-C655D:~/Desktop$ at 6:20 am
warning: commands will be executed using /bin/sh
at> rip-record usa.txt -t 00:05:00

at> at>
job 170 at Wed Jul 27 06:20:00 2016
steve@steve-Satellite-C655D:~/Desktop$

help please

hi there watched your great how to vids but how can i find links from kodi im on windows 10 64bit really
stuck can you help me please thanks

playercorefactory error on line 69

Running on Windows 8.1, install & setup folders as per your readme for windows
after pressing y in kodi save url works ok, kodi play on vlc ok, kod play on mpv not working or the record function.

checked all folders & reset path but no go

can record ok using your old scripts, i opened up cmd (Terminal) in windows & ran the following command,
bash rip-record videourl=14-57-01.24.txt

bash rip-record videourl=14-57-01.24.txt/cygdrive/c:/users/++++++/git/kodi-playercorefactory/bash-scripts-windows/rip-record: rip-record line 69: syntax error near unexpected token '>'
bash rip-record videourl=14-57-01.24.txt/cygdrive/c:/users/++++++/git/kodi-playercorefactory/bash-scripts-windows/rip-record: rip-record line 69: ' $HTTP>'

Any Ideas, i have installed playercorefactory on kodi running ubuntu 16.04 64-bit and works perfectly
ok

Now pulling my hair out.

Bigo

Recording from MLB.tv

Hi Mr. Napoleon ,
it's very nice work what you have developed here ,

but I have an issue , when recording from (MLB.tv) which is added from this repository (https://github.com/eracknaphobia/repo.eracknaphobia)

and to open these games (it requires user-name and password) I fill them as required ,
So I can watch MLB through Kodi , the problem is when trying to record these it shows flash error in the cmd then close (I had to screen record to capture it).

another thing is that only the full games can't be recorder , opened with vlc or mvp ..etc
it catches the save url but it's shows an error when I open it in the internet browser as well .

So I'm going to attach the error message from cmd , the internet browser and the save url file .

hope you can help me with this please .
error
videourl-20-20-51.02.txt

playercorefactory.xml

Hi Napoleon,

Love you're work.
I'm a total novice at this so please bear with me.
I've been following your Kodi recording videos on Youtube and the playercorefactory.xml file is different (in your github) to the one you refer to on Youtube videos 1& 2.
How can I get that coding or is it obsolete and been superseded?

Many Thanks
Sparkplugs

Bash: No such file of directory

Hi

I have tried this on Windows 10 and Server 12, but always come up with an error "bash: rip-play:no such file or directory"

I have triple checked the environment variables and all seems fine, I can run Bash in a cmd window and it also works fine

I just can't get it to run your scripts directly from Kodi, I just get the CMD windows briefly flashing

Any idea what i am doing incorrectly?

Regards

rip-batch record

how do you add rip-batch record to ubuntu? I followed your youtube video on kodi batch downloading video 46 and its not working for me. ex: when i type in rip -r, it says command not found. It says that also when i type in rip-record-batch in the terminal

rip-record error

Hi Dear:Sir
I have followed your instruction to use Playercorefactory file to record from Stalker-iptv in windows 10 with Kodi 15.2. When pushing "Y" key the long menu pops up, lf I select Play, the ffmpeg player plays the content, but if I use the record, nothing is recorded. I get a new video.mkv file but it is empty. I tried to use command line, then I get error recording unknown time stamp. The strange thing is, if I use Aljazeera news channel then no problem because, it does not use ffmpeg for recording, following is the error I get while using command line to record from Stalker Iptv from Kodiland(NFPS) to record, no matter what channel the error is the same. I tried to record BBC America channel.

Microsoft Windows Version 10.0.10240 2015 Microsoft Corporation. All rights reserved.

C:\Users\Robert\Desktop>bash rip-record videourl.txt
Input #0, hls,applehttp, from 'http://31.220.40.117:80/LiveEdge/BBCAmericaHD/chunklist_w1273648558_b1000000.m3u8?token=b51d08e1bde4bbbc9b9d5c020f41714d ':
Duration: N/A, start: 72950.455000, bitrate: N/A
Program 0
Metadata:
variant_bitrate : 0
Stream #0:0: Data: timed_id3 (ID3 / 0x20334449)
Stream #0:1: Video: h264 (Main) ([27][0][0][0] / 0x001B), yuv420p, 720x480 [SAR 10:11 DAR 15:11], 59.94 fps, 29.97 tbr, 90k tbn, 59.94 tbc
Stream #0:2: Audio: mp2 ([4][0][0][0] / 0x0004), 48000 Hz, stereo, s16p, 128 kb/s
[matroska @ 044ad520] Codec for stream 0 does not use global headers but container format requires global headers
[matroska @ 044ad520] Codec for stream 1 does not use global headers but container format requires global headers
Output #0, matroska, to 'C:\Users\Robert/Desktop/video.mkv':
Metadata:
encoder : Lavf57.19.100
Stream #0:0: Video: h264 (H264 / 0x34363248), yuv420p, 720x480 [SAR 10:11 DAR 15:11], q=2-31, 59.94 fps, 29.97 tbr, 1k tbn, 90k tbc
Stream #0:1: Audio: mp2 (P[0][0][0] / 0x0050), 48000 Hz, stereo, 128 kb/s
Stream mapping:
Stream #0:1 -> #0:0 (copy)
Stream #0:2 -> #0:1 (copy)
Press [q] to stop, [?] for help
[matroska @ 044ad520] Timestamps are unset in a packet for stream 0. This is deprecated and will stop working in the future. Fix your code to set the timestamps properly
[matroska @ 044ad520] Can't write packet with unknown timestamp
av_interleaved_write_frame(): Invalid argument
[matroska @ 044ad520] Can't write packet with unknown timestamp
Error writing trailer of C:\Users\Robert/Desktop/video.mkv: Invalid argumentframe= 5 fps=0.0 q=-1.0 Lsize= 23kB time=00:00:00.02 bitrate=7713.3kbits/s
video:29kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
Conversion failed!

Please, let me know if you have a fix for this issue. l surely appreciate your precious work and willing to do some test for you. I am a retired senior citizen spending my time to learn new stuff.
Again thank you and wish you best.
Hejazb

Error recording from www.iranntv.com/?p=281476

Hi Dear: Napoleon
I was finally able to find a way to watch "www.iranntv.com/?p=281476" stream in Kodi 15.2 but when I try to record while in Kodi or using Bash in windows shell, I get the following errors. I updated my Playercorefactory folder but it did not help could you look at the errors and see if you can fine a cure.
Thank you so very much.
Best wishes
Harry

EXTM3U

EXTINF:-1,Simay Azadi IRAN*

http://rrr.sz.xlcdn.com/?account=simay&file=MultiL&type=live&service=wowza&protocol=http&output=playlist.m3u8
Recording from Kodi Simple IPTV PVR

Error
"oaded to different address: parent(0x370000) != child(0x3A0000)
/cygdrive/c/Users/Boby/AppData/Roaming/Kodi/userdata/kodi-playercorefactory/bash
-scripts-windows/video-regex.sh: fork: retry: No child processes
2 [main] bash 3172 child_info_fork::abort: C:\cygwin\bin\cyggcc_s-1.dll: L
oaded to different address: parent(0x370000) != child(0x3A0000)
/cygdrive/c/Users/Boby/AppData/Roaming/Kodi/userdata/kodi-playercorefactory/bash
-scripts-windows/video-regex.sh: fork: retry: No child processes"

Recording using Bash rip-record
C:\Users\Boby\Desktop>bash rip-record videourl.txt
Error
"pvr://channels/tv/All channels/pvr.iptvsimple_526342641.pvr : Protocol not foun
d"

Xbmc MyLibrary 1.43

Would using Xbmc MyLibrary 1.43 scanning all the files automatically to a folder with your program to rip-record the movies/episodes work?

Installing Kodi

Sorry to bother you about it but what is the correct procedure to install kodi 16 Jarvis on Ubuntu Mate, somehow i accidently lost kodi. I tried every way to put it back on, but i got no where.

                                                                                        Thank You
                                                                                           Steve

rip-record

Hi Im trying to change the download file location in the rip-record script to my windows partitition where there is more space. I can access it and copy files in the linux terminal but when I change the script it wont work.
my path is /media/srf/D896FB8C96FB6A00/FILMS/. Tried everything but no success.
Everything else works fine

Fix Bug in Linux

Hi Napole0n,

In you video tutorial No.43, you mentioned a bug with FFMPEG (No Trailing CRLF found in HTTP header) that can't be fixed in windows but can easily be fixed in Linux.
I appear to be having this same problem in recording streams in Linux Mint, where it only records 1KB.
Can you please let me know how to fix this bug in Linux.

Many Thanks
Sparkplugs

Recording

I tried to set-up a recording with this but it didnt record just left a 16.6kb mkv file. Here is my:
steve@steve-Satellite-C655D:/Desktop$ sudo service atd start
[sudo] password for steve:
steve@steve-Satellite-C655D:
/Desktop$ at 8:15 am
warning: commands will be executed using /bin/sh
at> rip-record ~/Documents/schedule/starzcomedy.txt -t 00:30:00
at>
job 238 at Wed Aug 3 08:15:00 2016
Even in kodi.

virtual box

This is probably a stupid question, but which way is easier installing linux to windows or windows to linux in virtual box. Do you have a video on it?

window cant find bash

Hi, When I hit the record button to record in kodi, windows says it cant find the bash. What did i do wrong here?

Thanks
Steve

tcpdump

Hi, Im trying using the tcpdump for extracting links from addon iptv playlists in your video #54 and when i put an wlan0-06-45-09-04-16.pcap on the desktop it says 24 bytes and when I extract to a pcap-links-06-52-09-04-16.txt, it blank. I did what you did in Phoenix and Navi-x.

                                                                                    Thank You
                                                                                            steve

Not so much an issue, more assistance required...

As stated really,hope u don't mind me contacting u on here, i looked at your twitter but that doesn't seem very active.
i used your excellent guide to enable me to use mpv as an external player in kodi...im using OS X 10.11.5.
i wanted to use mpv for one reason...the interpolation capabilities.
You're probably aware of it but it enables you to watch 24/25 fps video smooth as butter on a 50/60hz screen....i was absolutely amazed at the quality produced via mpv with this feature enabled, and as i view all my live tv stuff from an iptv provider it really does make a hell of a difference...

Anyway, the problem is this, if i open a url in mpv from the terminal...everything works fine, and the interpolation can be triggered on and off from a keypress....perfect.
The problem is if I'm using mpv as an external player in kodi...the stream starts playing but if i try to switch interpolation on mpv crashes instantly.
Ive been pulling my hair out trying to fix it, I'm happy to give you a login to my iptv provider if u can help solve this.
I've checked kodi logs and nothing notable gets reported there...and the mpv logs are next to useless.

the guide i used to install mpv and get it working is here:
https://www.reddit.com/r/osx/comments/4ljbdq/mpv_tutorial_and_60_fps_playback_on_os_x/

obviously if you can't be bothered or are too busy then feel free to close the issue and ill carry on banging my head against the wall !!

Regards.

Kodi V17 Krypton Alpha 2

Hi Napoleon,

Hope you managed to get over England's fiasco swiftly enough. Unless you're like me and just use to the disappointment now.

Just a quick one - I'm currently running Kodi V16.1 and everything is working perfectly with Kodi and the Playercorefactory, thanks to you and your tutorials.
I was wondering whether or not I should update Kodi to Version 17. Only I don't want to mess anything up but then, I don't want Kodi playing up because it's not been updated.

What do you think?

Many Thanks
Sparkplugs

cant download this link or play other than kodi player

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.