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

From RidgeRun Developer Connection
Jump to: navigation, search
(Project Dependencies)
m
 
(8 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 gstreamer1.0-doc gstreamer1.0-tools gstreamer1.0-x gstreamer1.0-alsa gstreamer1.0-gl gstreamer1.0-gtk3 gstreamer1.0-qt5 gstreamer1.0-pulseaudio
+
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 older. To check your Python version run:
+
Modular Media Server requires Python 3.6 or newer. To install Python run:
 +
 
 +
<syntaxhighlight lang=bash>
 +
sudo apt install python3.6
 +
</syntaxhighlight>
  
<pre style="white-space: pre-wrap;">
 
python3 --version
 
</pre>
 
  
=== Project Dependencies ===
 
  
To install all Python dependencies run the following command inside the root directory of the project.
+
To check your Python version run:
<pre>
 
pip3 install .
 
</pre>
 
  
 +
<syntaxhighlight lang=bash>
 +
python3 --version
 +
</syntaxhighlight>
  
  
Line 36: 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