Replaying WebEx stream from %temp% files?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I am trying to replay a WebEx stream I have previously watched from temp files that were created when I originally watched the stream.
The original link to the stream no longer works and there was never a download link to save an .arf
file.
It appears that when you stream a WebEx session from a link (and perhaps live, I have not tried) it creates a folder in your %temp%
location with an 8 digit name (52431122
for example). In that folder are a handful of files beginning with wbxcbr_
and wbxmcsr_
with .std
, .dat
, .conf
and .idx
extensions. Two of the .dat
files are the largest by far and presumably contain the video and audio information.
I have tried renaming all of the files in the folder one at a time to .avi
, .mp4
, .mp3
and .arf
for playback in VLC and the WebEx Network Recording Player with no luck. I have also tried converting them to .mp3
and .mp4
with ffmpeg for playback with no luck.
I am happy to play back the stream using the WebEx software if there is a way to convert the files into a .arf file, but am willing to save/convert the files in to any playable format at this point.
conversion recording webex
add a comment |
I am trying to replay a WebEx stream I have previously watched from temp files that were created when I originally watched the stream.
The original link to the stream no longer works and there was never a download link to save an .arf
file.
It appears that when you stream a WebEx session from a link (and perhaps live, I have not tried) it creates a folder in your %temp%
location with an 8 digit name (52431122
for example). In that folder are a handful of files beginning with wbxcbr_
and wbxmcsr_
with .std
, .dat
, .conf
and .idx
extensions. Two of the .dat
files are the largest by far and presumably contain the video and audio information.
I have tried renaming all of the files in the folder one at a time to .avi
, .mp4
, .mp3
and .arf
for playback in VLC and the WebEx Network Recording Player with no luck. I have also tried converting them to .mp3
and .mp4
with ffmpeg for playback with no luck.
I am happy to play back the stream using the WebEx software if there is a way to convert the files into a .arf file, but am willing to save/convert the files in to any playable format at this point.
conversion recording webex
add a comment |
I am trying to replay a WebEx stream I have previously watched from temp files that were created when I originally watched the stream.
The original link to the stream no longer works and there was never a download link to save an .arf
file.
It appears that when you stream a WebEx session from a link (and perhaps live, I have not tried) it creates a folder in your %temp%
location with an 8 digit name (52431122
for example). In that folder are a handful of files beginning with wbxcbr_
and wbxmcsr_
with .std
, .dat
, .conf
and .idx
extensions. Two of the .dat
files are the largest by far and presumably contain the video and audio information.
I have tried renaming all of the files in the folder one at a time to .avi
, .mp4
, .mp3
and .arf
for playback in VLC and the WebEx Network Recording Player with no luck. I have also tried converting them to .mp3
and .mp4
with ffmpeg for playback with no luck.
I am happy to play back the stream using the WebEx software if there is a way to convert the files into a .arf file, but am willing to save/convert the files in to any playable format at this point.
conversion recording webex
I am trying to replay a WebEx stream I have previously watched from temp files that were created when I originally watched the stream.
The original link to the stream no longer works and there was never a download link to save an .arf
file.
It appears that when you stream a WebEx session from a link (and perhaps live, I have not tried) it creates a folder in your %temp%
location with an 8 digit name (52431122
for example). In that folder are a handful of files beginning with wbxcbr_
and wbxmcsr_
with .std
, .dat
, .conf
and .idx
extensions. Two of the .dat
files are the largest by far and presumably contain the video and audio information.
I have tried renaming all of the files in the folder one at a time to .avi
, .mp4
, .mp3
and .arf
for playback in VLC and the WebEx Network Recording Player with no luck. I have also tried converting them to .mp3
and .mp4
with ffmpeg for playback with no luck.
I am happy to play back the stream using the WebEx software if there is a way to convert the files into a .arf file, but am willing to save/convert the files in to any playable format at this point.
conversion recording webex
conversion recording webex
edited Nov 30 '16 at 4:31
JakeGould
32.7k10100142
32.7k10100142
asked Mar 16 '16 at 17:42
1hit1der1hit1der
4615
4615
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
On Rooted CON 2015 Abel Valero presented great video with reversing WebEx data.
To simply get *.arf
you can run Abel rebuild tool from GitHub.
After that you can use WebEx Network Recording Player to convert *.arf
file to appropriate video format (.wmv
, .swf
or .mp4
)
How to use steps
If you already have WebEx temp files - just start from Step 5. If not - start from Step 1.
- Open WebEx session in browser and follow the steps to install "WebEx Network Recording Player". Wait until video will be downloaded. There is a blue buffering indicator and it should be 100%
- Download Process Monitor - it's a program from SysInternals Suite and install it
- Run "Process Monitor" and adjust filters to show capturing from "Network Recording Player". I used following contains filter for that:
"ProcessName" contains "NRB"
- Look into process
nbrplay.exe
disk activity and obtain temporary folder path. Usually it's folder:%windows%Users%username%AppDataLocalTemp<several digits>
- Copy contents of WebEx temp folder somewhere when full recording is downloaded (Step 2 - buffering indicator is 100%)
- Download util from here as a compiled executable (password is
webex
) or compile / adjust it to your needs - Run
rebuild.exe
, provide path from Step 5 into fieldRuta:
and pressGo
(it's a Spanish utility) - Wait for rebuild process - usually up to 10 sec. Util will save file with extension
*.arf
in the folder where utility itself is located - Open resulted
*.arf
file in the Network Recording Player:File > Open
- Convert video to appropriate format for offline viewing
File > Convert Format
(usually*.wmv
or*.mp4
)
3
You really should include a quick summary of how to use the tool. Videos go down, and a consise, self contained answer is always so much better. The tool on github seems to lack any form of documentation
– Journeyman Geek♦
Nov 30 '16 at 5:43
1
the tool worked for me. i then have an ARF file that can be converted further.
– beta
Jun 29 '17 at 6:09
1
You can edit it into your answer
– Journeyman Geek♦
Jul 19 '17 at 9:56
2
@journeyman-geek I agree - added "How to use" section
– Yuriy Kramar
Jul 19 '17 at 10:09
1
Is it normal that playing the ARF file doesn't have any audio?
– alex88
Mar 5 '18 at 18:24
|
show 3 more comments
Saturnix, try https://github.com/Piriaco/rebuildwebex this is another fork for the original one
add a comment |
protected by JakeGould Nov 30 '16 at 4:30
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
On Rooted CON 2015 Abel Valero presented great video with reversing WebEx data.
To simply get *.arf
you can run Abel rebuild tool from GitHub.
After that you can use WebEx Network Recording Player to convert *.arf
file to appropriate video format (.wmv
, .swf
or .mp4
)
How to use steps
If you already have WebEx temp files - just start from Step 5. If not - start from Step 1.
- Open WebEx session in browser and follow the steps to install "WebEx Network Recording Player". Wait until video will be downloaded. There is a blue buffering indicator and it should be 100%
- Download Process Monitor - it's a program from SysInternals Suite and install it
- Run "Process Monitor" and adjust filters to show capturing from "Network Recording Player". I used following contains filter for that:
"ProcessName" contains "NRB"
- Look into process
nbrplay.exe
disk activity and obtain temporary folder path. Usually it's folder:%windows%Users%username%AppDataLocalTemp<several digits>
- Copy contents of WebEx temp folder somewhere when full recording is downloaded (Step 2 - buffering indicator is 100%)
- Download util from here as a compiled executable (password is
webex
) or compile / adjust it to your needs - Run
rebuild.exe
, provide path from Step 5 into fieldRuta:
and pressGo
(it's a Spanish utility) - Wait for rebuild process - usually up to 10 sec. Util will save file with extension
*.arf
in the folder where utility itself is located - Open resulted
*.arf
file in the Network Recording Player:File > Open
- Convert video to appropriate format for offline viewing
File > Convert Format
(usually*.wmv
or*.mp4
)
3
You really should include a quick summary of how to use the tool. Videos go down, and a consise, self contained answer is always so much better. The tool on github seems to lack any form of documentation
– Journeyman Geek♦
Nov 30 '16 at 5:43
1
the tool worked for me. i then have an ARF file that can be converted further.
– beta
Jun 29 '17 at 6:09
1
You can edit it into your answer
– Journeyman Geek♦
Jul 19 '17 at 9:56
2
@journeyman-geek I agree - added "How to use" section
– Yuriy Kramar
Jul 19 '17 at 10:09
1
Is it normal that playing the ARF file doesn't have any audio?
– alex88
Mar 5 '18 at 18:24
|
show 3 more comments
On Rooted CON 2015 Abel Valero presented great video with reversing WebEx data.
To simply get *.arf
you can run Abel rebuild tool from GitHub.
After that you can use WebEx Network Recording Player to convert *.arf
file to appropriate video format (.wmv
, .swf
or .mp4
)
How to use steps
If you already have WebEx temp files - just start from Step 5. If not - start from Step 1.
- Open WebEx session in browser and follow the steps to install "WebEx Network Recording Player". Wait until video will be downloaded. There is a blue buffering indicator and it should be 100%
- Download Process Monitor - it's a program from SysInternals Suite and install it
- Run "Process Monitor" and adjust filters to show capturing from "Network Recording Player". I used following contains filter for that:
"ProcessName" contains "NRB"
- Look into process
nbrplay.exe
disk activity and obtain temporary folder path. Usually it's folder:%windows%Users%username%AppDataLocalTemp<several digits>
- Copy contents of WebEx temp folder somewhere when full recording is downloaded (Step 2 - buffering indicator is 100%)
- Download util from here as a compiled executable (password is
webex
) or compile / adjust it to your needs - Run
rebuild.exe
, provide path from Step 5 into fieldRuta:
and pressGo
(it's a Spanish utility) - Wait for rebuild process - usually up to 10 sec. Util will save file with extension
*.arf
in the folder where utility itself is located - Open resulted
*.arf
file in the Network Recording Player:File > Open
- Convert video to appropriate format for offline viewing
File > Convert Format
(usually*.wmv
or*.mp4
)
3
You really should include a quick summary of how to use the tool. Videos go down, and a consise, self contained answer is always so much better. The tool on github seems to lack any form of documentation
– Journeyman Geek♦
Nov 30 '16 at 5:43
1
the tool worked for me. i then have an ARF file that can be converted further.
– beta
Jun 29 '17 at 6:09
1
You can edit it into your answer
– Journeyman Geek♦
Jul 19 '17 at 9:56
2
@journeyman-geek I agree - added "How to use" section
– Yuriy Kramar
Jul 19 '17 at 10:09
1
Is it normal that playing the ARF file doesn't have any audio?
– alex88
Mar 5 '18 at 18:24
|
show 3 more comments
On Rooted CON 2015 Abel Valero presented great video with reversing WebEx data.
To simply get *.arf
you can run Abel rebuild tool from GitHub.
After that you can use WebEx Network Recording Player to convert *.arf
file to appropriate video format (.wmv
, .swf
or .mp4
)
How to use steps
If you already have WebEx temp files - just start from Step 5. If not - start from Step 1.
- Open WebEx session in browser and follow the steps to install "WebEx Network Recording Player". Wait until video will be downloaded. There is a blue buffering indicator and it should be 100%
- Download Process Monitor - it's a program from SysInternals Suite and install it
- Run "Process Monitor" and adjust filters to show capturing from "Network Recording Player". I used following contains filter for that:
"ProcessName" contains "NRB"
- Look into process
nbrplay.exe
disk activity and obtain temporary folder path. Usually it's folder:%windows%Users%username%AppDataLocalTemp<several digits>
- Copy contents of WebEx temp folder somewhere when full recording is downloaded (Step 2 - buffering indicator is 100%)
- Download util from here as a compiled executable (password is
webex
) or compile / adjust it to your needs - Run
rebuild.exe
, provide path from Step 5 into fieldRuta:
and pressGo
(it's a Spanish utility) - Wait for rebuild process - usually up to 10 sec. Util will save file with extension
*.arf
in the folder where utility itself is located - Open resulted
*.arf
file in the Network Recording Player:File > Open
- Convert video to appropriate format for offline viewing
File > Convert Format
(usually*.wmv
or*.mp4
)
On Rooted CON 2015 Abel Valero presented great video with reversing WebEx data.
To simply get *.arf
you can run Abel rebuild tool from GitHub.
After that you can use WebEx Network Recording Player to convert *.arf
file to appropriate video format (.wmv
, .swf
or .mp4
)
How to use steps
If you already have WebEx temp files - just start from Step 5. If not - start from Step 1.
- Open WebEx session in browser and follow the steps to install "WebEx Network Recording Player". Wait until video will be downloaded. There is a blue buffering indicator and it should be 100%
- Download Process Monitor - it's a program from SysInternals Suite and install it
- Run "Process Monitor" and adjust filters to show capturing from "Network Recording Player". I used following contains filter for that:
"ProcessName" contains "NRB"
- Look into process
nbrplay.exe
disk activity and obtain temporary folder path. Usually it's folder:%windows%Users%username%AppDataLocalTemp<several digits>
- Copy contents of WebEx temp folder somewhere when full recording is downloaded (Step 2 - buffering indicator is 100%)
- Download util from here as a compiled executable (password is
webex
) or compile / adjust it to your needs - Run
rebuild.exe
, provide path from Step 5 into fieldRuta:
and pressGo
(it's a Spanish utility) - Wait for rebuild process - usually up to 10 sec. Util will save file with extension
*.arf
in the folder where utility itself is located - Open resulted
*.arf
file in the Network Recording Player:File > Open
- Convert video to appropriate format for offline viewing
File > Convert Format
(usually*.wmv
or*.mp4
)
edited Jul 19 '17 at 10:17
answered Sep 13 '16 at 9:28
Yuriy KramarYuriy Kramar
7115
7115
3
You really should include a quick summary of how to use the tool. Videos go down, and a consise, self contained answer is always so much better. The tool on github seems to lack any form of documentation
– Journeyman Geek♦
Nov 30 '16 at 5:43
1
the tool worked for me. i then have an ARF file that can be converted further.
– beta
Jun 29 '17 at 6:09
1
You can edit it into your answer
– Journeyman Geek♦
Jul 19 '17 at 9:56
2
@journeyman-geek I agree - added "How to use" section
– Yuriy Kramar
Jul 19 '17 at 10:09
1
Is it normal that playing the ARF file doesn't have any audio?
– alex88
Mar 5 '18 at 18:24
|
show 3 more comments
3
You really should include a quick summary of how to use the tool. Videos go down, and a consise, self contained answer is always so much better. The tool on github seems to lack any form of documentation
– Journeyman Geek♦
Nov 30 '16 at 5:43
1
the tool worked for me. i then have an ARF file that can be converted further.
– beta
Jun 29 '17 at 6:09
1
You can edit it into your answer
– Journeyman Geek♦
Jul 19 '17 at 9:56
2
@journeyman-geek I agree - added "How to use" section
– Yuriy Kramar
Jul 19 '17 at 10:09
1
Is it normal that playing the ARF file doesn't have any audio?
– alex88
Mar 5 '18 at 18:24
3
3
You really should include a quick summary of how to use the tool. Videos go down, and a consise, self contained answer is always so much better. The tool on github seems to lack any form of documentation
– Journeyman Geek♦
Nov 30 '16 at 5:43
You really should include a quick summary of how to use the tool. Videos go down, and a consise, self contained answer is always so much better. The tool on github seems to lack any form of documentation
– Journeyman Geek♦
Nov 30 '16 at 5:43
1
1
the tool worked for me. i then have an ARF file that can be converted further.
– beta
Jun 29 '17 at 6:09
the tool worked for me. i then have an ARF file that can be converted further.
– beta
Jun 29 '17 at 6:09
1
1
You can edit it into your answer
– Journeyman Geek♦
Jul 19 '17 at 9:56
You can edit it into your answer
– Journeyman Geek♦
Jul 19 '17 at 9:56
2
2
@journeyman-geek I agree - added "How to use" section
– Yuriy Kramar
Jul 19 '17 at 10:09
@journeyman-geek I agree - added "How to use" section
– Yuriy Kramar
Jul 19 '17 at 10:09
1
1
Is it normal that playing the ARF file doesn't have any audio?
– alex88
Mar 5 '18 at 18:24
Is it normal that playing the ARF file doesn't have any audio?
– alex88
Mar 5 '18 at 18:24
|
show 3 more comments
Saturnix, try https://github.com/Piriaco/rebuildwebex this is another fork for the original one
add a comment |
Saturnix, try https://github.com/Piriaco/rebuildwebex this is another fork for the original one
add a comment |
Saturnix, try https://github.com/Piriaco/rebuildwebex this is another fork for the original one
Saturnix, try https://github.com/Piriaco/rebuildwebex this is another fork for the original one
edited Mar 5 at 4:11
answered Mar 5 at 3:53
televisitelevisi
72
72
add a comment |
add a comment |
protected by JakeGould Nov 30 '16 at 4:30
Thank you for your interest in this question.
Because it has attracted low-quality or spam answers that had to be removed, posting an answer now requires 10 reputation on this site (the association bonus does not count).
Would you like to answer one of these unanswered questions instead?