
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (61)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (5894)
-
How to make video from images using Java + x264 ; cross platform solution required
19 octobre 2014, par Shashank TulsyanI have made a software which records my entire day into a video.
Example video : https://www.youtube.com/watch?v=ITZYMMcubdw (Note : >16hrs compressed in 2mins, video speed too high, might cause epilepsy :P )The approach that I use right now is, Avisynth + x264 + Java.
This is very very efficient. The video for entire day is created in 3-4mins, and reduced to a size of 40-50MB. This is perfect, the only issue is that this solution is not cross platform.
Does anyone have a better idea ?I tried using java based x246 libraries but
- They are slow as hell
- The video output size is too big
- The video quality is not satisfactory.
Some website suggest a command such as :
x264.exe --crf 18 --fps 24 --input-res 1920x1080 --input-csp rgb -o "T:\crf18.mkv" "T:\___BBB\big_buck_bunny_%05d.png"
There are 2 problems with this approach.
- As far as I know, x264 does accept image sequence as input, ffmpeg does
- The input images are not named in sequence such as image01.png , image02.png etc. They are named as timestamp_as_longinteger.png . So inorder to allow x264 to accept these images as input, I have to rename all of them ( i make a symbolic link for all images in a new folder ). This approach is again unsatisfactory, because I need more flexibility in selecting/unselecting files which would be converted to a video. Right now my approach is a hack.
The best solution is x264. But not sure how I can send it an image sequence from Java. That too, images which are not named in sequential fashion.
BTW The purpose of making video is going back in time, and finding out how time was spend/wasted.
The software is aware of what the user is doing. So using this I can find out (visually) how a class evolved with time. How much time I spend on a particular class/package/module/project/customer. The granuality right now is upto the class level, I wish to take it to the function level. The software is called jitendriya.
Here is 1 solution
How does one encode a series of images into H264 using the x264 C API ?But this is for C. If I have to do the same in java, and in a cross plaform fashion, I will have to resort to JNA/JNI. JNA might have a significant performance hit. JNI would be more work.
FFMpeg also looks like a nice alternative, but I am still not satisfied by any of these solutions looking at the pros and cons.
Solution Adapted.
package weeklyvideomaker;
import java.awt.AWTException;
import java.awt.Rectangle;
import java.awt.Robot;
import java.awt.Toolkit;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Calendar;
import java.util.LinkedList;
import java.util.logging.Level;
import java.util.logging.Logger;
import neembuu.release1.util.StreamGobbler;
import org.shashaank.activitymonitor.ScreenCaptureHandler;
import org.shashaank.jitendriya.JitendriyaParams;
/**
*
* @author Shashank
*/
public class DirectVideoScreenHandler implements ScreenCaptureHandler {
private final JitendriyaParams jp;
private String extension="264";
private boolean lossless=false;
private String fps="24/1";
private Process p = null;
private Rectangle r1;
private Robot r;
private int currentDay;
private static final String[]weeks={"sun","mon","tue","wed","thu","fri","sat"};
public DirectVideoScreenHandler(JitendriyaParams jp) {
this.jp = jp;
}
public String getExtension() {
return extension;
}
public void setExtension(String extension) {
this.extension = extension;
}
public boolean isLossless() {
return lossless;
}
public void setLossless(boolean lossless) {
this.lossless = lossless;
}
public String getFps() {
return fps;
}
public void setFps(String fps) {
this.fps = fps;
}
private static int getday(){
return Calendar.getInstance().get(Calendar.DAY_OF_WEEK) - 1;
}
public void make()throws IOException,AWTException{
currentDay = getday();
File week = jp.getWeekFolder();
String destinationFile = week+"\\videos\\"+weeks[currentDay]+"_"+System.currentTimeMillis()+"_direct."+extension;
r = new Robot();
r1 = getScreenSize();
ProcessBuilder pb = makeProcess(destinationFile, 0, r1.width, r1.height);
p = pb.start();
StreamGobbler out = new StreamGobbler(p.getInputStream(), "out");
StreamGobbler err = new StreamGobbler(p.getErrorStream(), "err");
out.start();err.start();
}
private static Rectangle getScreenSize(){
return new Rectangle(Toolkit.getDefaultToolkit().getScreenSize());
}
private void screenShot(OutputStream os)throws IOException{
BufferedImage bi = r.createScreenCapture(r1);
int[]intRawData = ((java.awt.image.DataBufferInt)
bi.getRaster().getDataBuffer()).getData();
byte[]rawData = new byte[intRawData.length*3];
for (int i = 0; i < intRawData.length; i++) {
int rgb = intRawData[i];
rawData[ i*3 + 0 ] = (byte) (rgb >> 16);
rawData[ i*3 + 1 ] = (byte) (rgb >> 8);
rawData[ i*3 + 2 ] = (byte) (rgb);
}
os.write(rawData);
}
private ProcessBuilder makeProcess(String destinationFile, int numberOfFrames,
int width, int height){
LinkedList<string> commands = new LinkedList<>();
commands.add("\""+encoderPath()+"\"");
if(true){
commands.add("-");
if(lossless){
commands.add("--qp");
commands.add("0");
}
commands.add("--keyint");
commands.add("240");
commands.add("--sar");
commands.add("1:1");
commands.add("--output");
commands.add("\""+destinationFile+"\"");
if(numberOfFrames>0){
commands.add("--frames");
commands.add(String.valueOf(numberOfFrames));
}else{
commands.add("--stitchable");
}
commands.add("--fps");
commands.add(fps);
commands.add("--input-res");
commands.add(width+"x"+height);
commands.add("--input-csp");
commands.add("rgb");//i420
}
return new ProcessBuilder(commands);
}
private String encoderPath(){
return jp.getToolsPath()+File.separatorChar+"x264_64.exe";
}
@Override public void run() {
try {
if(p==null){
make();
}
if(currentDay!=getday()){// day changed
destroy();
return;
}
if(!r1.equals(getScreenSize())){// screensize changed
destroy();
return;
}
screenShot(p.getOutputStream());
} catch (Exception ex) {
Logger.getLogger(DirectVideoScreenHandler.class.getName()).log(Level.SEVERE, null, ex);
}
}
private void destroy()throws Exception{
p.getOutputStream().flush();
p.getOutputStream().close();
p.destroy();
p = null;
}
}
</string>package weeklyvideomaker;
import org.shashaank.jitendriya.JitendriyaParams;
/**
*
* @author Shashank
*/
public class DirectVideoScreenHandlerTest {
public static void main(String[] args)throws Exception {
JitendriyaParams jp = new JitendriyaParams.Builder()
.setToolsPath("F:\\GeneralProjects\\JReminder\\development_environment\\tools")
.setOsDependentDataFolderPath("J:\\jt_data")
.build();
DirectVideoScreenHandler w = new DirectVideoScreenHandler(jp);
w.setExtension("264");
w.setFps("24/1");
w.setLossless(false);
w.make();
for (int i = 0; ; i++) {
w.run();
Thread.sleep(1000);
}
}
} -
Get Proper Progress Updates on Two Long Waited Concurrent Processes in ASP.NET
17 juillet 2012, par irfanmcsdI implemented background video processing using .net ffmpeg wrapper http://www.mediasoftpro.com with progress bar indication to calculate how much video is processed and send information to web page to update progress bar indicator. Its working fine if only single process works at a time, but in case of two concurrent processes (start two video publishing at once let say from two different computers), progress bar suddenly mixed progress status.
Here is my code where i used static objects to properly send information of single instance to progress bar.static string FileName = "grey_03";
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
if (Request.Params["file"] != null)
{
FileName = Request.Params["file"].ToString();
}
}
}
public static double ProgressValue = 0;
public static MediaHandler _mhandler = new MediaHandler();
[WebMethod]
public static string EncodeVideo()
{
// MediaHandler _mhandler = new MediaHandler();
string RootPath = HttpContext.Current.Server.MapPath(HttpContext.Current.Request.ApplicationPath);
_mhandler.FFMPEGPath = HttpContext.Current.Server.MapPath("~\\ffmpeg_july_2012\\bin\\ffmpeg.exe");
_mhandler.InputPath = RootPath + "\\contents\\original";
_mhandler.OutputPath = RootPath + "\\contents\\mp4";
_mhandler.BackgroundProcessing = true;
_mhandler.FileName = "Grey.avi";
_mhandler.OutputFileName =FileName;
string presetpath = RootPath + "\\ffmpeg_july_2012\\presets\\libx264-ipod640.ffpreset";
_mhandler.Parameters = " -b:a 192k -b:v 500k -fpre \"" + presetpath + "\"";
_mhandler.OutputExtension = ".mp4";
_mhandler.VCodec = "libx264";
_mhandler.ACodec = "libvo_aacenc";
_mhandler.Channel = 2;
_mhandler.ProcessMedia();
return _mhandler.vinfo.ErrorCode.ToString();
}
[WebMethod]
public static string GetProgressStatus()
{
return Math.Round(_mhandler.vinfo.ProcessingCompleted, 2).ToString();
// if vinfo.processingcomplete==100, then you can get complete information from vinfo object and store it in database and perform other processing.
}Here is jquery functions responsible for updating progress bar indication after every second etc.
$(function () {
$("#vprocess").on({
click: function (e) {
ProcessEncoding();
var IntervalID = setInterval(function () {
GetProgressValue(IntervalID);
}, 1000);
return false;
}
}, '#btn_process');
});
function GetProgressValue(intervalid) {
$.ajax({
type: "POST",
url: "concurrent_03.aspx/GetProgressStatus",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {
// Do something interesting here.
$("#pstats").text(msg.d);
$("#pbar_int_01").attr('style', 'width: ' + msg.d + '%;');
if (msg.d == "100") {
$('#pbar01').removeClass("progress-danger");
$('#pbar01').addClass("progress-success");
if (intervalid != 0) {
clearInterval(intervalid);
}
FetchInfo();
}
}
});
}The problem arises due to static mediahandler object
public static MediaHandler _mhandler = new MediaHandler();
I need a way to keep two concurrent processes information separate from each other in order to update progress bar with value exactly belong to that process.
-
Best Web Video Encoding Practices for IOS (FFMpeg)
21 juin 2012, par MagicMushroomI am working on an online video repository system for a client, written mostly in PHP. At the moment I am building a mobile version of our desktop website. Our desktop site allows users to watch videos in the browser, much like YouTube.
My client uploads videos through the manager interface I have created, and my application uses FFmpeg on the server to transcode his videos into several resolutions and bitrates. I am no expert on FFmpeg, and while I do not know the ins and outs of each individual setting, I do understand how it works as a whole. Right now, we are using the mp4 container format with the h.264 codec to encode our videos. Our command looks like :
ffmpeg -y -i "INPUT FILE.mov" -f mp4 -s 640x480 -vcodec libx264 -preset fast -maxrate 1500 -bitrate 1000 -bufsize 4096 -acodec libfaac -ab 192 -ac 2 "OUTPUT_FILE.mp4" >> "FILE.log" 2>&1 &
I'm hoping to gain information about best practices with encoding video for web streaming on IOS and other mobile devices using FFmpeg. What resolutions and settings make for good mobile streaming video ? How can I ensure maximum compatibility across the sea of Android devices ?