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

From RidgeRun Developer Connection
Jump to: navigation, search
m
 
(21 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
<noinclude>
 
<noinclude>
{{Modular Media Server/Top Banner|previous=Modular Media Server Introduction |next=Modular Media Server Introduction/ Modules supported|keywords=}}
+
{{Modular Media Server/Top Banner|previous=Building and Installation|next=User Guide/Installing and Running MMS|metakeywords=}}
 
</noinclude>
 
</noinclude>
  
In this section, you can find how to get the project and how to compile it.
+
== GStreamer ==
  
{{Modular Media Server/Foot|previous=|next=Modular_Media_Server_Introduction/What_does_the_library_do}}
+
GStreamer is used for all multimedia management. To install it open a terminal and type this:
  
[[Category:RidgeRun's Modular Media Server project Templates]]
+
<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
 +
</syntaxhighlight>
 +
 
 +
== 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:
 +
 
 +
<syntaxhighlight lang=bash>
 +
sudo apt install python3.6
 +
</syntaxhighlight>
 +
 
 +
 
 +
 
 +
To check your Python version run:
 +
 
 +
<syntaxhighlight lang=bash>
 +
python3 --version
 +
</syntaxhighlight>
 +
 
 +
 
 +
<noinclude>
 +
{{Modular Media Server/Foot|Building and Installation|User Guide/Installing and Running MMS}}
 +
</noinclude>
 +
 
 +
[[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