<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>streaming &#8211; The Preppers Voice</title>
	<atom:link href="https://preppersvoice.com/tag/streaming/feed/" rel="self" type="application/rss+xml" />
	<link>https://preppersvoice.com</link>
	<description>Scientia Non Timete  (Knowledge Not Fear)</description>
	<lastBuildDate>Sun, 22 May 2016 14:29:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://preppersvoice.com/wp-content/uploads/2025/05/cropped-9f0cd96a-3d36-45bc-aebd-d690ffe8f6e0-1-32x32.png</url>
	<title>streaming &#8211; The Preppers Voice</title>
	<link>https://preppersvoice.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to Live Stream to Youtube or Ustream with Raspberry Pi</title>
		<link>https://preppersvoice.com/2016/05/22/how-to-live-stream-to-youtube-or-ustream-with-raspberry-pi/</link>
					<comments>https://preppersvoice.com/2016/05/22/how-to-live-stream-to-youtube-or-ustream-with-raspberry-pi/#respond</comments>
		
		<dc:creator><![CDATA[North Carolina Prepper]]></dc:creator>
		<pubDate>Sun, 22 May 2016 14:29:03 +0000</pubDate>
				<category><![CDATA[Communications]]></category>
		<category><![CDATA[The TEOTWAWKI pi (Raspberry pi) Project.]]></category>
		<category><![CDATA[AAC]]></category>
		<category><![CDATA[compile]]></category>
		<category><![CDATA[cross]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[H264]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[libx264]]></category>
		<category><![CDATA[live]]></category>
		<category><![CDATA[MP3]]></category>
		<category><![CDATA[Pi]]></category>
		<category><![CDATA[PuTTY]]></category>
		<category><![CDATA[Raspberry]]></category>
		<category><![CDATA[rtmp]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[stream]]></category>
		<category><![CDATA[streaming]]></category>
		<category><![CDATA[Ustream]]></category>
		<category><![CDATA[youtube]]></category>
		<guid isPermaLink="false">https://preppersvoice.com/?p=581</guid>

					<description><![CDATA[&#160; How to live stream YouTube or Ustream from a raspberry pi. I will put a link to the Image file when I get it set up on my website. Just type the commands below. I did this all in PuTTY using SSH. So what we need to do is cross compile FFMPEG for the...]]></description>
										<content:encoded><![CDATA[<div class="entry-content-asset videofit"><iframe title="How to Live Stream to Youtube or Ustream  with Raspberry Pi" width="720" height="405" src="https://www.youtube.com/embed/u1DgsvjYKS4?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
<p>&nbsp;</p>
<p>How to live stream YouTube or Ustream from a raspberry pi.<br />
I will put a link to the Image file when I get it set up on my website.<br />
Just type the commands below. I did this all in PuTTY using SSH.<br />
So what we need to do is cross compile FFMPEG for the Raspberry Pi. ( I will just put a Image on my website for people to just down load a working image if people want it.</p>
<p>sudo raspi-config<br />
sudo apt-get update<br />
sudo apt-get dist-upgrade<br />
sudo apt-get clean<br />
First you need to install FFMPEG I used the website below.<br />
http://www.jeffreythompson.org/blog/2014/11/13/installing-ffmpeg-for-raspberry-pi/</p>
<p>Installing FFMPEG for Raspberry Pi<br />
INSTALL H264 SUPPORT<br />
Run the following commands, one at a time.<br />
1 cd /usr/src<br />
2 git clone git://git.videolan.org/x264<br />
3 cd x264<br />
4 ./configure &#8211;host=arm-unknown-linux-gnueabi &#8211;enable-static &#8211;disable-opencl<br />
5 make<br />
6 sudo make install</p>
<p>1. INSTALL OTHER LIBRARIES/FORMATS<br />
Anything else you would like to install should be done now, before compiling FFMPEG. This includes MP3, AAC, etc.</p>
<p>2. INSTALL FFMPEG<br />
Add lines similar to the &#8211;enable-libx264 for anything else installed above. This may take a REALLY long time, so be patient.<br />
1 cd /usr/src<br />
2 git clone git://source.ffmpeg.org/ffmpeg.git<br />
3 cd ffmpeg<br />
4 sudo ./configure &#8211;arch=armel &#8211;target-os=linux &#8211;enable-gpl &#8211;enable-libx264 &#8211;enable-nonfree<br />
5 make<br />
6 sudo make install</p>
<p>Note if you have a Model B+ you can use make -j4 instead of just make to take advantage of all four cores!</p>
<p>To start the live stream for Youtube. Us this command line</p>
<p>raspivid -o &#8211; -t 0 -vf -hf -fps 30 -b 6000000 | ffmpeg -re -ar 44100 -ac 2 -acodec pcm_s16le -f s16le -ac 2 -i /dev/zero -f h264 -i &#8211; -vcodec copy -acodec aac -ab 128k -g 50 -strict experimental -f flv rtmp://a.rtmp.youtube.com/live2/Put your stream key here<br />
To start it for Ustream us find out your rtmp server url and stream id here.<br />
https://support.ustream.tv/hc/en-us/articles/207851987-How-to-stream-to-Ustream-using-Wirecast-FMLE-TriCaster-or-any-RTMP-encoder</p>
]]></content:encoded>
					
					<wfw:commentRss>https://preppersvoice.com/2016/05/22/how-to-live-stream-to-youtube-or-ustream-with-raspberry-pi/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
