
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (38)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
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 -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...)
Sur d’autres sites (7334)
-
I've download ffmpeg source code,but I don't know how to use it on anroid
23 octobre 2013, par Sravanthi PasaragondaI've download ffmpeg source code,but I don't know how to use it on anroid.I need to remove audio from vedio file and i need to add other audio to vedio.This is my Task .I am using ubutu 10.04 ,And i have installed NDK-r9,ffmpeg and yasm 1-2.0 in my system.
please any sample process to how to start ffmpeg example,i have downloaded lot of example from GITHUB Likehttps://github.com/appunite/AndroidFFmpeg
http://www.roman10.net/how-to-build-android-applications-based-on-ffmpeg-by-an-example/
https://github.com/mconf/android-ffmpeg
But i dont no how to complie all projects using ffmpeg.Please give me step by step process for any ffmpeg example in ubutu.
Thanks
-
How can i use ffmpeg to capture the entire desktop but without the console window of the ffmpeg ? [duplicate]
1er novembre 2017, par Simonicop cooperThis question already has an answer here :
This is how i’m doing it in the command prompt :
ffmpeg -f gdigrab -framerate 24 -i desktop -preset ultrafast -pix_fmt yuv420p out.mp4
And in csharp code :
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;
using System.Diagnostics;
namespace Ffmpeg_App
{
class Ffmpeg
{
Process process;
public void Start(string FileName, int Framerate)
{
process = new System.Diagnostics.Process();
process.StartInfo.FileName = @"D:\ffmpegx86\ffmpeg.exe"; // Change the directory where ffmpeg.exe is.
process.EnableRaisingEvents = false;
process.StartInfo.WorkingDirectory = @"D:\ffmpegx86"; // The output directory
process.StartInfo.Arguments = @"-f gdigrab -framerate " + Framerate + " -i desktop -preset ultrafast - pix_fmt yuv420p " + FileName;
process.Start();
process.StartInfo.UseShellExecute = false;
process.StartInfo.CreateNoWindow = false;
Close();
}
public void Close()
{
process.Close();
}
}
}In form1 top :
Ffmpeg fpeg = new Ffmpeg();
Start button :
private void Start_Click(object sender, EventArgs e)
{
fpeg.Start("test.mp4", 24);
}Stop button :
private void Stop_Click(object sender, EventArgs e)
{
fpeg.Close();
}The problem is when i start recording it also recording first few seconds the console window of the ffmpeg too same when i stop the recording.
How can i make in both cases using only command prompt or using with csharp that it will not show the console window of the ffmpeg ?
-
avfilter/window_func : add tukey window function
5 janvier 2016, par Paul B Mahol