Media Codec for mpeg4

MP4 are not working in clear linux and I found out that the codec isn’t available for Clear Linux, if I am wrong then please include the codec in the VLC bundle

I already made clear linux as my desktop operating system but it lacks some things that are important for developer desktop,

like VS Code, it is available as flatpak but it doesn’t run on the native terminal, so it will be better if vs code is available as a bundle instead of flatpak.

provide Nvidia driver through the swupd bundle and bring bumblebee support.

and pantheon desktop(This is totally my personal preference) but it is an awesome DE, I love the workspace management in it, it feels like it is one of the best DE for developers and also the PIP mode

There are several other threads discussing this topic already, please read those first:

Install Codecs

Thank you pceiley
How-to: h264 etc. Support for Firefox (including ffmpeg install)

$ mkdir ~/build && cd ~/build
$ curl -LO https://ffmpeg.org/releases/ffmpeg-4.2.tar.bz2
$ tar jxf ffmpeg-4.2.tar.bz2
$ cd ffmpeg-4.2
$ sudo swupd bundle-add c-basic devpkg-libva devpkg-freetype devpkg-opus devpkg-libtheora devpkg-libvorbis
$ ./configure  --prefix=/usr/local --enable-gpl --enable-nonfree --enable-libfreetype --enable-libopus --enable-libtheora --enable-libvorbis --enable-shared && make && sudo make install
$ sudo sh -c 'echo /usr/local/lib >>/etc/ld.so.conf'
$ sudo ldconfig

Then install VLC from Software or reinstall Videos Application, now you can play mp4 files.

To install NodeJS

Go to NodeJS Page and download nodejs

$ cd /opt/
$ sudo chmod -R 755 ./
$ sudo tar xf node-"YOUR VERSION"-linux-x64.tar.xz  -d /opt/
$ nano ~/.profile

Add the lines:

export NODEJS_HOME=/opt/node-“YOUR VERSION”-linux-x64/bin
export PATH=$NODEJS_HOME:$PATHse

Update your file:

$ . ~/.profile

Check your version:

$ node -v

Check your version of NPM with:

$ npm -v

Install Visual Studio Code (with bash terminal)

Go to Downloads to download VSC.

$ sudo unzip VSCode-linux-x64.zip -d /opt/VSC

$ sudo nano /usr/share/applications/MSVS.desktop

Add this:

[Desktop Entry]
Name=Visual Studio Code
Comment=Editor de código Visual Studio Linux
Exec=/opt/VSD/VSCode-linux-x64/bin/code
Icon=/opt/VSD/VSCode-linux-x64/resources/app/resources/linux/code.png
Terminal=false

Then look in your application menu.

Happy Coding!

1 Like