Multiboxing.com - Multiboxing in World of Warcraft and more!
          

Go Back   Multiboxing in World of Warcraft and Beyond! > All Gaming Forums > General Discussions

Reply
 
LinkBack Thread Tools Display Modes
Old 04-05-2011, 07:29 AM   #1021
Junior Member
 
Join Date: Apr 2011
Posts: 18
Default Re: Exact way to stream with FME to JTV - READ HERE

This is going to be a documentation of what I did while setting the stream up from scratch again.

Uninstalled VHScrCap
Uninstalled FME

Reinstalled FME to D:\Stream\Flash Media Encoder 2.5\
Reinstalled VHScrCap to D:\Stream\HmelyoffLabs

VHConfig
-> Create new one -> 30 fps -> Unchecked everything but align video, show mouse and show clicks
Captured whole screen.

Created .bat:
Code:
cd D:\Stream\Flash Media Encoder 2.5
start /min /affinity 2 /high FMEcmd.exe /p D:\Stream\fme\justin.xml
Ran Flash Media Encoder 2.5, selected Line 1(Virtual Audio Cable) and saved the profile.

Copied
Code:
        <device>Line 1 (Virtual Audio Cable)</device>
Created new .xml and copied the code from OP.
Replaced
Code:
        <device>Line In (Realtek High Definitio</device>
with
Code:
        <device>Line 1 (Virtual Audio Cable)</device>
Added StreamID to the line
Code:
<stream>YOURJTVFMESTREAMID</stream>
Save As -> Unicode for the .xml

First attempt:
11fps and crashed with the same error:


Changed Datarate to 500 since that seemed to give good fps results before resetting everything.

Second attempt:
~20fps and crashed without displaying any error and closed the cmd.

Changed to h264 for testing.
Third attempt:
9fps and crashed with above error.
Changed back to vp6.

Interesting note. My stream crashed in Firefox at the exact same time:



So I guess I'm back at the exact same point before reinstalling everything.
Zere is offline   Reply With Quote
Old 04-05-2011, 08:19 AM   #1022
Super Moderator
 
Nghtmr9999's Avatar
 
Join Date: Aug 2009
Location: Minnesota, US
Posts: 1,662
Blog Entries: 6
Default Re: Exact way to stream with FME to JTV - READ HERE

Looking at some other forums, it looks like the issue could stem from a lack of processing power, and hence FME is taking too long to encode the packets.

I'll keep on looking and report anything else I find.
__________________
Nghtmr9999 is offline   Reply With Quote
Old 04-05-2011, 09:03 AM   #1023
Junior Member
 
Join Date: Apr 2011
Posts: 18
Default Re: Exact way to stream with FME to JTV - READ HERE

Quote:
Originally Posted by Nghtmr9999 View Post
Looking at some other forums, it looks like the issue could stem from a lack of processing power, and hence FME is taking too long to encode the packets.

I'll keep on looking and report anything else I find.
Thanks, I wouldn't mind streaming in less quality if that works.
Zere is offline   Reply With Quote
Old 04-05-2011, 09:13 AM   #1024
Super Moderator
 
Nghtmr9999's Avatar
 
Join Date: Aug 2009
Location: Minnesota, US
Posts: 1,662
Blog Entries: 6
Default Re: Exact way to stream with FME to JTV - READ HERE

Post your XML you are using again, editing out your stream key. While I take a gander at that, try disabling audio and see if you still get the error. That way, we can narrow it down to either an audio problem or a video problem.
__________________
Nghtmr9999 is offline   Reply With Quote
Old 04-05-2011, 10:53 AM   #1025
Junior Member
 
Join Date: Apr 2011
Posts: 4
Default Re: Exact way to stream with FME to JTV - READ HERE

Okay Thanks for the guide I managed to get it working. Everything looks good, except once I am in game (Starcraft 2) there seems to be "blinking", maybe a split second there is a black screen, and this happens every few seconds. I have attached a movie below

IMG_0154.MOV

Alternatively you can see the VODS in my justin.tv page: kurapika87 on Justin.tv

I followed the directions word for word.
Datarate 1500
Broadcast Size: 1100ish 800ish (in the XML file)
Resolution in game: 1024x768
Desktop resolution: 1154x8** (desktop gets cut off but I'm fine with that)


Thanks for helping, I really hope to get this fixed!
kurapika87 is offline   Reply With Quote
Old 04-05-2011, 10:55 AM   #1026
Junior Member
 
Join Date: Apr 2011
Posts: 4
Default Re: Exact way to stream with FME to JTV - READ HERE

Here is my XML
Quote:
<?xml version="1.0" encoding="UTF-16"?>
<flashmediaencoder_profile>
<preset>
<name>Custom</name>
<description></description>
</preset>
<capture>
<video>
<device>VHScrCap</device>
<crossbar_input>0</crossbar_input>
<frame_rate>60</frame_rate>
<size>
<width>1154</width>
<height>862</height>
</size>
</video>
<audio>
<device>Line In (Realtek High Definitio</device>
<crossbar_input>0</crossbar_input>
<sample_rate>44100</sample_rate>
<channels>2</channels>
<input_volume>75</input_volume>
</audio>
</capture>
<process>
<video>
<crop>
<left>0</left>
<top>0</top>
<right>0</right>
<bottom>3</bottom>
</crop>

</video>
</process>
<encode>
<video>
<format>VP6</format>
<datarate>1500</datarate>
<advanced>
<keyframe_frequency>5 seconds</keyframe_frequency>
<quality>Avg Quality - Great Framerate</quality>
<noise_reduction>None</noise_reduction>
<datarate_window>Medium</datarate_window>
<cpu_usage>Dedicated</cpu_usage>
</advanced>
</video>
<audio>
<format>Mp3</format>
<datarate>128</datarate>
</audio>
</encode>
<restartinterval>
<days></days>
<hours></hours>
<minutes></minutes>
</restartinterval>
<reconnectinterval>
<attempts></attempts>
<interval></interval>
</reconnectinterval>
<output>
<rtmp>
<url>rtmp://live.justin.tv/app</url>
<backup_url></backup_url>
<stream>*edited out*</stream>
</rtmp>
</output>
<metadata>
<entry>
<key>author</key>
<value></value>
</entry>
<entry>
<key>copyright</key>
<value></value>
</entry>
<entry>
<key>description</key>
<value></value>
</entry>
<entry>
<key>keywords</key>
<value></value>
</entry>
<entry>
<key>rating</key>
<value></value>
</entry>
<entry>
<key>title</key>
<value></value>
</entry>
</metadata>
<preview>
<audio></audio>
</preview>
<log>
<level>100</level>
<directory>C:\fme\</directory>
</log>
</flashmediaencoder_profile>
kurapika87 is offline   Reply With Quote
Old 04-05-2011, 12:21 PM   #1027
Junior Member
 
Join Date: Apr 2011
Posts: 18
Default Re: Exact way to stream with FME to JTV - READ HERE

Quote:
Originally Posted by Nghtmr9999 View Post
Post your XML you are using again, editing out your stream key. While I take a gander at that, try disabling audio and see if you still get the error. That way, we can narrow it down to either an audio problem or a video problem.
Code:
<?xml version="1.0" encoding="UTF-16"?>
<flashmediaencoder_profile>
    <preset>
        <name>Custom</name>
        <description></description>
    </preset>
    <capture>
        <video>
        <device>VHScrCap</device>
        <crossbar_input>0</crossbar_input>
        <frame_rate>60</frame_rate>
        <size>
            <width>1920</width>
            <height>1080</height>
        </size>
        </video>
        <audio>
        <device>Line 1 (Virtual Audio Cable)</device>
        <crossbar_input>0</crossbar_input>
        <sample_rate>44100</sample_rate>
        <channels>2</channels>
        <input_volume>75</input_volume>
        </audio>
    </capture>
    <process>
        <video>
        <crop>
            <left>0</left>
            <top>0</top>
            <right>0</right>
            <bottom>3</bottom>
        </crop>

        </video>
    </process>
    <encode>
        <video>
        <format>vp6</format>
        <datarate>500</datarate>
        <advanced>
            <keyframe_frequency>5 seconds</keyframe_frequency>
            <quality>Avg Quality - Great Framerate</quality>
            <noise_reduction>None</noise_reduction>
            <datarate_window>Medium</datarate_window>
            <cpu_usage>Dedicated</cpu_usage>
        </advanced>
        </video>
        <audio>
        <format>Mp3</format>
        <datarate>128</datarate>
        </audio>
    </encode>
    <restartinterval>
        <days></days>
        <hours></hours>
        <minutes></minutes>
    </restartinterval>
    <reconnectinterval>
        <attempts></attempts>
        <interval></interval>
    </reconnectinterval>
    <output>
        <rtmp>
        <url>rtmp://live.justin.tv/app</url>
        <backup_url></backup_url>
        <stream>_______________________________</stream>
        </rtmp>
    </output>
    <metadata>
        <entry>
        <key>author</key>
        <value></value>
        </entry>
        <entry>
        <key>copyright</key>
        <value></value>
        </entry>
        <entry>
        <key>description</key>
        <value></value>
        </entry>
        <entry>
        <key>keywords</key>
        <value></value>
        </entry>
        <entry>
        <key>rating</key>
        <value></value>
        </entry>
        <entry>
        <key>title</key>
        <value></value>
        </entry>
    </metadata>
    <preview>
        <audio></audio>
    </preview>
    <log>
        <level>100</level>
        <directory>C:\fme\</directory>
    </log>
</flashmediaencoder_profile>
How do I turn off audio?
Zere is offline   Reply With Quote
Old 04-05-2011, 01:03 PM   #1028
Super Moderator
 
Nghtmr9999's Avatar
 
Join Date: Aug 2009
Location: Minnesota, US
Posts: 1,662
Blog Entries: 6
Default Re: Exact way to stream with FME to JTV - READ HERE

Looking at the diff, there really isn't anything troublesome standing out, so your XML looks fine.

To turn off audio, I think you just leave the <device> tags blank.
__________________
Nghtmr9999 is offline   Reply With Quote
Old 04-05-2011, 03:52 PM   #1029
Junior Member
 
Join Date: Apr 2011
Posts: 18
Default Re: Exact way to stream with FME to JTV - READ HERE

Changed
Code:
<device>Line 1 (Virtual Audio Cable)</device>
to
Code:
<device></device>
still crashed so I changed it back again.
Zere is offline   Reply With Quote
Old 04-06-2011, 01:53 AM   #1030
Junior Member
 
Join Date: Apr 2011
Posts: 4
Default Re: Exact way to stream with FME to JTV - READ HERE

Wow this is really starting to get frustrating.

I don't know what happened, I must have fiddled with the settings trying to fix the in-game flickering... But now the stream is totally ****ed up. All I get is a pink screen (i can see the tiny tiny corner of my screen at the top left but that's about it). Honestly now I know why dyyno charges $150 for user-friendly software.
kurapika87 is offline   Reply With Quote
Reply

Tags
justin.tv, ravingnoah

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Interesting read on HD resolutions Tim Off Topic 0 04-13-2010 09:33 AM
How do you read the forums? Poyzon Off Topic 13 02-27-2010 09:52 AM
Best stream ever please read!!! Bigtime19 General Discussions 1 01-27-2010 04:52 PM
Read me first!!! Tim Guides That Need Work 0 11-05-2009 04:58 PM
Battlenet (Please Read) Smithnweson General Discussions 16 09-01-2009 05:05 AM


SEO by vBSEO 3.3.2