
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (80)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (8107)
-
FFMEG Watermark over video c#
21 décembre 2018, par Lắc Si Lêpublic void AddWaterMark(string orginalVideoPath, string waterMarkPath, string outPutVideoPath) { string ffmpeg = System.AppDomain.CurrentDomain.BaseDirectory + @"\Tools\ffmpeg.exe";
System.Diagnostics.Process ffmpegProcess = new System.Diagnostics.Process();
System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo(ffmpeg);
startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Normal;
startInfo.Arguments = " -i " + orginalVideoPath + " -i " + waterMarkPath + " -filter_complex \"overlay=10:10\" " + outPutVideoPath;
try
{
System.Diagnostics.Process.Start(startInfo).WaitForExit();
}
catch (Exception err)
{
MessageBox.Show(err.Message);
}
}Hello you guys, My code is used for making fuction of watermark over video. But It was problematic that the code worked without output....Could you guys figure me out ? (I wonder do we have to change our URL file into their correct form ). I used OpenFIleDialog for getting these files URL, like this
FolderBrowserDialog folderBrowseDialog = new FolderBrowserDialog();
if (folderBrowseDialog.ShowDialog() == DialogResult.OK)
{
outPutWM = folderBrowseDialog.SelectedPath;
}Thank you guys a bunch !
-
Merge remote-tracking branch ’lukaszmluki/master’
31 mai 2013, par Michael NiedermayerMerge remote-tracking branch ’lukaszmluki/master’
* lukaszmluki/master :
ftp: enhanced error handling
ftp: reconnect on seek
ftp: move common commands code to function
ftp: enhanced status code handling
ftp: reconnect on read
ftp: move create control connection to function
ftp: credentials moved into FTPContext
ftp: rename function name
ftp: formatting and typos fixesMerged-by : Michael Niedermayer <michaelni@gmx.at>
-
FFMPEG Screen record using AMD GPU encoder in Arch linux
23 décembre 2020, par Lucas Martins SoaresI am trying to record my screen with the GPU encoder using the following command :


ffmpeg -vaapi_device /dev/dri/renderD128 -f x11grab -video_size 1440x900 -i :0 -vf 'hwupload,scale_vaapi=format=nv12' -c:v h264_vaapi -qp 24 output.mp4


But I get the following error :


[h264_vaapi @ 0x565330f47580] Driver does not support some wanted packed headers (wanted 0xd,
found 0x1).


the recording starts well but when i finish a 3 second video it takes 3 minutes to process and the
result is an almost slow motion video.


My drivers :


xf86-video-amdgpu 19.1.0-2
xf86-video-ati 1:19.1.0-2
xf86-video-fbdev 0.5.0-2
xf86-video-vesa 2.5.0-1
libva-mesa-driver 20.3.1-1
mesa 20.3.1-1
opencl-mesa 20.3.1-1



vainfo :



vainfo: VA-API version: 1.10 (libva 2.10.0)
vainfo: Driver version: Mesa Gallium driver 20.3.1 for AMD VERDE (DRM 2.50.0, 5.9.14-arch1-1, LLVM 11.0.0)
vainfo: Supported profile and entrypoints
 VAProfileMPEG2Simple : VAEntrypointVLD
 VAProfileMPEG2Main : VAEntrypointVLD
 VAProfileVC1Simple : VAEntrypointVLD
 VAProfileVC1Main : VAEntrypointVLD
 VAProfileVC1Advanced : VAEntrypointVLD
 VAProfileH264ConstrainedBaseline: VAEntrypointVLD
 VAProfileH264ConstrainedBaseline: VAEntrypointEncSlice
 VAProfileH264Main : VAEntrypointVLD
 VAProfileH264Main : VAEntrypointEncSlice
 VAProfileH264High : VAEntrypointVLD
 VAProfileH264High : VAEntrypointEncSlice
 VAProfileNone : VAEntrypointVideoProc