
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (23)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...)
Sur d’autres sites (7235)
-
Java sound vs C sound api in sound result
18 août 2019, par Ahmedi finish developing a conference chat app using java, and i used mp3 as encoder and javacv ( ffmpeg ) as a library, but the sound i get not sonorous like Paltalk app
i used java sound api to capture the sound then store the sound in a buffer , send it to the encoder and get the compressed bytes and send it via socket then decode it and play it in speaker.
the sound format was like 44100 sample rate when i capture the sound in java and in encoder it generate 11025 sound.
here how i get sound from java apiAudioFormat format = new AudioFormat(44100.0f, 16 , 1, true, false);
// target dataline (Mic)
DataLine.Info info = new DataLine.Info(TargetDataLine.class, format);
targetDataLine = (TargetDataLine) AudioSystem.getLine(info);
targetDataLine.open();i want to know what the thing making sound sonorous ?
-
Unsplitting two video files with ffmpeg [duplicate]
2 septembre 2016, par exebookThis question is an exact duplicate of :
I cannot find a better word for this, because I searched for "combine", "join", "merge", "concat" and each time I get the information on how to get two videos into one so that the resulting file will play first video and then continues to the second one. I, on the other hand, need them to play simultaneously in the resulting video, so that first file goes to the left, and the second one to the right. It is a video chat recording of two person web cameras that need to get into one file to play at once. How to do that with ffmpeg ?
-
FFMPEG drawbox filter. Hex color result not matching input values
31 juillet 2018, par Leon DigzI’m trying to create a border using the drawbox filter using a specific HEX color input, however the result I am getting does not match the value I set.
Consider the following code which produces a 600x600 swatch ;
ffmpeg -i 0.jpg -vf drawbox=x=0:y=0:w=600:h=600:color=#E4E8F3@1:t=fill _border.png
E4E8F3 is supposed to translate to RGB 228,232,243
When I run the above code, however, and re-import into photoshop the actual color, is "sort of close", but not close enough.
The color I end up getting is ;
Hex d2d7df, which is RGB 210,215,223
Any ideas why I’m not getting the result I expect ?