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-02-2011, 07:41 PM   #971
Junior Member
 
Join Date: Apr 2011
Posts: 18
Default Re: Exact way to stream with FME to JTV - READ HERE

Nope. does that one need to be saved as unicode as well? I didn't change the .bat to unicode because i read some other responses that said to NOT change the .bat as unicode. I left it at its default state
dimensionzero is offline   Reply With Quote
Old 04-02-2011, 07:46 PM   #972
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

Nope, it's supposed to be left as it is, and not saved as Unicode.

I assume you are running a 64-bit OS and the xml file is in the proper directory you specified?
__________________
Nghtmr9999 is offline   Reply With Quote
Old 04-02-2011, 07:50 PM   #973
Junior Member
 
Join Date: Apr 2011
Posts: 18
Default Re: Exact way to stream with FME to JTV - READ HERE

Yes it's in the proper directory, the error says "The profile selected is not a vaild XML file" so that would mean that its trying to open the file, but it isnt successful correct? I'd assume if it weren't in the correct directory it wouldnt be detecing an XML file. I have also double checked to make sure the directories are correct.

I have no idea what else could be the cause =/

What could be wrong with my XML file? It's saved as unicode and the settings on it I have linked on my first post. Does everything seem accurate in the XML file to you?
dimensionzero is offline   Reply With Quote
Old 04-02-2011, 08:04 PM   #974
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

I did a diff comparing your XML to mine. There are some errors in your file.

Code:
</capture>
<process> (MISSING)
         <video>
         <crop>
             <left>0</left>
             <top>0</top>
             <right>0</right>
             <bottom>3</bottom>
         </crop>

         </video>
    </process>
    <encode>
Code:
</advanced>
        </video>
        <audio>
        <format>Mp3</format>
        <datarate>128</datarate>
        </audio>
    </capture>
    <process> (REMOVE)
Code:
    <preview>
        <video>
        <input>
            <zoom>100%</zoom>
        </input>
        <output>
            <zoom>100%</zoom>
        </output>
        </video> (REMOVE)
        <audio></audio>
    </preview>
    <log>
__________________
Nghtmr9999 is offline   Reply With Quote
Old 04-02-2011, 08:06 PM   #975
Junior Member
 
Join Date: Apr 2011
Posts: 18
Default Re: Exact way to stream with FME to JTV - READ HERE

Thank you very much. I will go ahead and add those to my XML and see if it works. Will let you know in a minute or so!
dimensionzero is offline   Reply With Quote
Old 04-02-2011, 08:10 PM   #976
Junior Member
 
Join Date: Apr 2011
Posts: 18
Default Re: Exact way to stream with FME to JTV - READ HERE

Blah I edited all those areas and it's still giving me the same error =/ anything else i can try?
dimensionzero is offline   Reply With Quote
Old 04-02-2011, 08:12 PM   #977
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

Try this. Remember to edit back in your stream ID

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>30</frame_rate>
        <size>
            <width>1920</width>
            <height>1080</height>
        </size>
        </video>
        <audio>
        <device>"What U Hear" (Creative SB X-Fi</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>2500</datarate>
        <advanced>
            <keyframe_frequency>5 seconds</keyframe_frequency>
            <quality>Good Quality - Good 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 ID HERE</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>
I forgot to mention you had a mis-spelling on
Code:
<url>rrtmp://live.justin.tv/app</url>
__________________

Last edited by Nghtmr9999; 04-02-2011 at 08:14 PM.
Nghtmr9999 is offline   Reply With Quote
Old 04-02-2011, 08:15 PM   #978
Junior Member
 
Join Date: Apr 2011
Posts: 18
Default Re: Exact way to stream with FME to JTV - READ HERE

Code:
    <output>
        <rtmp>
        <url>rrtmp://live.justin.tv/app</url>
        <backup_url></backup_url>
        <stream>STREAM ID HERE</stream>
        </rtmp>
    </output>
Found an error in your url it's rtmp not rrtmp

edit: too slow
Zere is offline   Reply With Quote
Old 04-02-2011, 08:19 PM   #979
Junior Member
 
Join Date: Apr 2011
Posts: 18
Default Re: Exact way to stream with FME to JTV - READ HERE

I copied the whole link you gave me and replaced it with mine, re-ented my stream ID and still showing same error hmm. So frustrating =/ didn't notice that typo but thanks for letting me know! has anyone else ever had an error like i do with mine? When i try to launch the file from the justin.bat file, it closes after a few seconds. but when i use the cmd prompt and type justin.bat from it's directory it'll stay open and show me the error that it's having
dimensionzero is offline   Reply With Quote
Old 04-02-2011, 08:23 PM   #980
Junior Member
 
Join Date: Apr 2011
Posts: 18
Default Re: Exact way to stream with FME to JTV - READ HERE

Quote:
C:Users\Danny\fme>"C:\Program Files (86)\Adobe\Flash Media Encoder 2.5\FMEcmd.exe" c:\fme\justin.xmle
Adobe(R) Flash (R) Media Encoder Command Line Utility v 2.5.0.2086
Copyright (C) 2007-2008 Adobe Systems Incorporated. All rights reserved.
Your error message reads "justin.xmle" instead of "justin.xml" is that a typo in you post or written in the cmd?
Zere 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