Difference between revisions of "Modular Media Server/User Guide/Dependencies"

From RidgeRun Developer Connection
Jump to: navigation, search
(GStreamer)
m
 
(5 intermediate revisions by one other user not shown)
Line 1: Line 1:
 
<noinclude>
 
<noinclude>
{{Modular Media Server/Top Banner|previous=Building and Installation|next=User Guide/Installing and Running MMS|keywords=}}
+
{{Modular Media Server/Top Banner|previous=Building and Installation|next=User Guide/Installing and Running MMS|metakeywords=}}
 
</noinclude>
 
</noinclude>
  
Line 7: Line 7:
 
GStreamer is used for all multimedia management. To install it open a terminal and type this:
 
GStreamer is used for all multimedia management. To install it open a terminal and type this:
  
<pre style="white-space: pre-wrap;">
+
<syntaxhighlight lang=bash>
 
sudo apt-get install libgstreamer1.0-0 gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-libav
 
sudo apt-get install libgstreamer1.0-0 gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-libav
</pre>
+
</syntaxhighlight>
  
 
== GstInterpipes ==
 
== GstInterpipes ==
Line 17: Line 17:
 
== Python ==
 
== Python ==
  
Modular Media Server requires Python 3.6.9 or newer. To check your Python version run:
+
Modular Media Server requires Python 3.6 or newer. To install Python run:
  
<pre style="white-space: pre-wrap;">
+
<syntaxhighlight lang=bash>
 +
sudo apt install python3.6
 +
</syntaxhighlight>
 +
 
 +
 
 +
 
 +
To check your Python version run:
 +
 
 +
<syntaxhighlight lang=bash>
 
python3 --version
 
python3 --version
</pre>
+
</syntaxhighlight>
  
  
Line 28: Line 36:
 
</noinclude>
 
</noinclude>
  
[[Category:RidgeRun's Modular Media Server project Templates]]
+
[[Category:Modular Media Server]]

Latest revision as of 04:01, 13 July 2023



Previous: Building and Installation Index Next: User Guide/Installing and Running MMS





GStreamer

GStreamer is used for all multimedia management. To install it open a terminal and type this:

sudo apt-get install libgstreamer1.0-0 gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-libav

GstInterpipes

Before building, make sure you have installed it. If you don't have it installed please follow the instructions in GstInterpipe - Building and Installation Guide

Python

Modular Media Server requires Python 3.6 or newer. To install Python run:

sudo apt install python3.6


To check your Python version run:

python3 --version



Previous: Building and Installation Index Next: User Guide/Installing and Running MMS