
Recherche avancée
Autres articles (40)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 (...) -
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (4538)
-
hevc : rename hevc.[ch] to hevcdec.[ch]
21 août 2016, par Anton Khirnovhevc : rename hevc.[ch] to hevcdec.[ch]
This is more consistent with the rest of libav and frees up the hevc.h
name for decoder-independent shared declarations.- [DBH] libavcodec/Makefile
- [DBH] libavcodec/dxva2_hevc.c
- [DBH] libavcodec/hevc_cabac.c
- [DBH] libavcodec/hevc_data.c
- [DBH] libavcodec/hevc_filter.c
- [DBH] libavcodec/hevc_mp4toannexb_bsf.c
- [DBH] libavcodec/hevc_mvs.c
- [DBH] libavcodec/hevc_parser.c
- [DBH] libavcodec/hevc_ps.c
- [DBH] libavcodec/hevc_ps_enc.c
- [DBH] libavcodec/hevc_refs.c
- [DBH] libavcodec/hevc_sei.c
- [DBH] libavcodec/hevcdec.c
- [DBH] libavcodec/hevcdec.h
- [DBH] libavcodec/hevcdsp_template.c
- [DBH] libavcodec/hevcpred.c
- [DBH] libavcodec/hevcpred_template.c
- [DBH] libavcodec/qsvenc_hevc.c
- [DBH] libavcodec/vaapi_encode_h265.c
- [DBH] libavcodec/vdpau_hevc.c
- [DBH] libavformat/hevc.c
- [DBH] libavformat/hevcdec.c
-
How do i know in the ffmpeg arguments command line what each argument do ?
24 mai 2013, par Revuen Ben DrorI have this code :
public void Start(string FileName, Bitmap Sample_Bitmap, int BitmapRate )
{
p = new NamedPipeServerStream(pipename, PipeDirection.Out, 1, PipeTransmissionMode.Byte);
byte[] b = new byte[1280 * 720 * 3]; // some buffer for the r g and b of pixels of an image of size 720p
System.Diagnostics.Process process = new System.Diagnostics.Process();
process.StartInfo.FileName = @"D:\pipetest\pipetest\ffmpegx86\ffmpeg.exe";
process.EnableRaisingEvents = false;
process.StartInfo.WorkingDirectory = @"D:\pipetest\pipetest\ffmpegx86";
process.StartInfo.Arguments = @"-f rawvideo -pix_fmt rgb24 -video_size 1280x720 -i
\\.\pipe\mytestpipe -map 0 -c:v libx264 -r " + BitmapRate + " " + FileName;
process.Start();
process.StartInfo.UseShellExecute = false;
process.StartInfo.CreateNoWindow = false;
p.WaitForConnection();
}So i know what BitmapRate do and the FileName but the rest of the arguments.
What odes it mean the
-f ?
and the rawvideo is that from the decoders or encoders? -i ? -c:v ? libx264
is a codec i guess and-r ?
Tried to google for this arguments format but didn't find any.
I have 4 text files lists :
encoders.txt decoders.txt
in both files i have rawvideo too.
I havepixfmts.txt and fileformats.txt
files.I want to build the arguments string from variables.
So for example BitmapRate is int and FileName is string. And the rest of the arguments what types of variables each one i should put to get in the function ?
For example
the rgb24 what type is it ? the 1280x720 what type of variable it
should be ? -
lavfi : rename AVFilterFormats.format_count to nb_formats
31 mars 2013, par Anton Khirnov