
Recherche avancée
Autres articles (61)
-
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" (...) -
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)
Sur d’autres sites (6997)
-
How to run FFMPEG at my web host server
26 avril 2013, par user1978421I want to perform some video process at my web host server. I don't think the web host server will allow me to execute an exe file for security reasons.
Should I use SharpFFMpeg ?
I have downloaded SharpFFMpeg. But it's lacking a proper documentation.
Can someone give one example how to perform a conversion from one video format to another ?
I have written my execution program, but the compiler says it cannot file the file specified. What's wrong with it ?
string command = @"D:\Recorded TV\ffmpeg.exe -i ""Australia's Toughest Police_QUEST_2013_04_17_21_57_00.wtv"" -s 800x400 throughCS.mp4";
try
{
ProcessStartInfo psi = new ProcessStartInfo("\"" + command + "\"");
psi.RedirectStandardOutput = true;
psi.UseShellExecute = false;
psi.CreateNoWindow = true;
Process proc = new Process();
proc.StartInfo = psi;
proc.Start();
string result = proc.StandardOutput.ReadToEnd();
tb1.Text = result;
Debug.WriteLine(result);
} -
How to use FFMPEG to play H.264 stream from NAL units that are stored as video AVPackets
11 avril 2013, par SapphireI am writing client-server system that uses FFMPEG library to parse H.264 stream into NAL units on the server side, then uses channel coding to send them over network to client side, where my application must be able to play video.
The question is how to play received AVPackets (NAL units) in my application as video stream.
I have found this tutorial helpful and used it as base for both server and client side.Some sample code or resource related to playing video not from file, but from data inside program using FFMPEG library would be very helpful.
I am sure that received information will be sufficient to play video, because I tried to save received data as .h264 or .mp4 file and it can be played by VLC player.
-
FFMpeg Commands definition in library source code
25 janvier 2013, par SKCI tried running the
ffmpeg
commands from Android activity using an emulator in Windows OS, but i get errors.
I tried keeping both my resource files in/mnt/sdcard
as well the application package within/data/data
, but none of the options worked out for running the ffmpeg commands.These are the following approach i had taken while running the command through an android activity.
(Command to convert a series if images into a video)
Approach 1 :String[] cmd =new String[4];
cmd[0]="/data/data/com.example.commandlineffmpeg/files/ffmpeg";
cmd[1]="-i";
cmd[2]="/data/data/com.example.commandlineffmpeg/images/bpc_%03d.png";
cmd[3]="/data/data/com.example.commandlineffmpeg/out/out.avi";
Process p = Runtime.getRuntime().exec(cmd, null, new File("/data/data/com.example.ffmpegnew/out"));I have solved this, basically there was system permission issues and hence we were not allowed to access the system properties required to run the FFMpeg commands.
Thus we need to sign the apps with the system certificates and hence we can use FFMpeg commands directly from any android activity.