
Recherche avancée
Autres articles (37)
-
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 (...) -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...)
Sur d’autres sites (6291)
-
ffmpeg split video not working with starting with 0 second [closed]
9 mars 2013, par SmitShahI got one issue regarding splitting video which is starting from 0th second say 0 to 15 second. I had seen many post and i followed syntax of them.
e.g
ffmpeg -ss 00:00:00 -t 00:00:15 -i 'Wildlife.wmv' '1.wmv'
or
ffmpeg -i 'Wildlife.wmv' -ss 00:00:00 -t 00:00:15 '1.wmv'
or
ffmpeg -ss 00:00:00 -i 'Wildlife.wmv' -t 00:00:15 '1.wmv'
none of above syntax is able to split video from begging of time to 15 seconds of video.
can anyone help me with this ,actually i'm new with ffmpeg. ffmpeg version information
ffmpeg-php version string: 0.6.0-svn ffmpeg-php build date string: Mar 7 2013 16:54:24 libavcodec build number: 3426306 libavcodec version number: 3426306
-
Starting ffmpeg.exe asynchronously ?
21 février 2013, par asprinIs it possible to start
FFmpeg
from within a C program and then not wait till the process terminates, but move on to the next line of code. At present, I'm usingint startFFmpeg()
{
char cmd[100] = "D:\\ffmpeg\\bin\\ffmpeg.exe -i D:\\video.mpg -r 10 D:\\frames\\%d.jpg";
int ff = system(cmd);
return ff;
}
int main()
{
int ff = startFFmpeg(); // great! ffmpeg has started, now immediately move to next part of code
if(ff)
{
// execute code in this block simultaneously?
// i.e. do not wait till ffmpeg closes
}
else
{
// error handling
}
return 0;
}Some Metadata
OS : Windows 7
Language : C
IDE : Dev C++UPDATE
I tried using
CreateProcess()
. The problem now is thatffmpeg.exe
is listed in the taskbar, but the frames are not getting extracted.char cmd[100] = "D:\\ffmpeg\\bin\\ffmpeg.exe -i D:\\video.mpg -r 10 D:\\frames\\%d.jpg";
PROCESS_INFORMATION pi;
STARTUPINFO si;
CreateProcess(cmd, "", 0, 0, 0, 0, 0, 0, &si, &pi); -
Revision 0993bef7e9 : vp9_ethread : calculate and save the tok starting address for tiles Each tile's
26 novembre 2014, par Yunqing WangChanged Paths :
Modify /vp9/encoder/vp9_bitstream.c
Modify /vp9/encoder/vp9_encodeframe.c
Modify /vp9/encoder/vp9_encoder.c
Modify /vp9/encoder/vp9_encoder.h
vp9_ethread : calculate and save the tok starting address for tilesEach tile’s tok starting address is calculated before the encoding
process. These addresses are stored so that the same calculation
won’t be done again in packing bit stream.Change-Id : I0a3be0301f002260c19a850303f2f73ebc47aa50