
Recherche avancée
Médias (9)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (87)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (9622)
-
Installing openCV with anaconda on ubuntu
6 décembre 2017, par Akash SethiI’m trying to use the openCV library with anaconda (Python) , i am able to import the cv2 package but nothing has been able to access a .mp4 file so far. It’s an issue with the ffmpeg thing which i have no idea about. I cannot post code right now since I’m using my phone. But if anyone can give me a Linux script or a tutorial that can help me work with openCV on python to be able to analyze mp4 videos with h264 encoding , that would be great
-
Installing openCV with anaconda on ubuntu
27 juin 2016, par Akash SethiI’m trying to use the openCV library with anaconda (Python) , i am able to import the cv2 package but nothing has been able to access a .mp4 file so far. It’s an issue with the ffmpeg thing which i have no idea about. I cannot post code right now since I’m using my phone. But if anyone can give me a Linux script or a tutorial that can help me work with openCV on python to be able to analyze mp4 videos with h264 encoding , that would be great
-
Can I create a file that simulates lower bit-depth output on another device using FFMPEG ?
11 mars 2020, par GuyWithDogsI’ve got a device with a 640x480 display and RGB565 video output. It plays XVID/MP3 video files in an AVI container. When I convert an MP4 file with FFMPEG (which I’m doing now), I use libxvid to create the output file. These are ending up as a YUV color space, with 8 bit color depth. And they look great playing on a laptop or desktop.
Then they go on the device and there are blocky artifacts, which the users find "offputting", because "it looks good on my laptop" and "my cell phone has a small screen and plays it fine". If only I had the resources of their laptop or cell phone in my device...
So, I’m wondering whether I can do the conversion from MP4 to my end AVI file in a way that FIRST converts the MP4 files (which can be sourced from anywhere — the user gets to find them and send them to a system that automagically converts the file to AVI) in the following way...
Convert MP4 to some format (I can’t figure on out) that is using an RGB565 color space/pixel format
Then convert that intermediate file to the AVI format. The libxvid package seems to always want yuv420p and 8 bit depth .. what I’m hoping is that the intermediate conversion to something that’s RGB565 gets me the "blocky output" that’s preserved into the AVI file. The idea here (which sounds far-fetched, I’ll admit), is to have something that plays on a laptop/desktop/cellphone with the same sort of artifacts I’ll get on the actual output device with the substandard video playback system.Can someone suggest some commands that would allow this type of conversion ? Thanks.