
Recherche avancée
Autres articles (72)
-
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 ;
-
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 ) (...) -
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
Sur d’autres sites (13090)
-
Revision fcb4253c9c : update libyuv to r1456 picks up build warning fixes for visual studio 2015 Cha
25 juillet 2015, par James ZernChanged Paths :
Modify /examples.mk
Modify /third_party/libyuv/README.libvpx
Modify /third_party/libyuv/include/libyuv/convert.h
Modify /third_party/libyuv/include/libyuv/convert_argb.h
Modify /third_party/libyuv/include/libyuv/convert_from.h
Modify /third_party/libyuv/include/libyuv/convert_from_argb.h
Modify /third_party/libyuv/include/libyuv/planar_functions.h
Add /third_party/libyuv/include/libyuv/rotate_row.h
Modify /third_party/libyuv/include/libyuv/row.h
Modify /third_party/libyuv/include/libyuv/scale_row.h
Modify /third_party/libyuv/include/libyuv/version.h
Modify /third_party/libyuv/source/compare.cc
Add /third_party/libyuv/source/compare_gcc.cc
(from /third_party/libyuv/source/compare_posix.cc
:f42012e526f218f4607e5d678c5bd44bb5978bff)
Modify /third_party/libyuv/source/compare_neon64.cc
Delete /third_party/libyuv/source/compare_posix.cc
Modify /third_party/libyuv/source/compare_win.cc
Modify /third_party/libyuv/source/convert.cc
Modify /third_party/libyuv/source/convert_argb.cc
Modify /third_party/libyuv/source/convert_from.cc
Modify /third_party/libyuv/source/convert_from_argb.cc
Modify /third_party/libyuv/source/cpu_id.cc
Modify /third_party/libyuv/source/mjpeg_decoder.cc
Modify /third_party/libyuv/source/mjpeg_validate.cc
Modify /third_party/libyuv/source/planar_functions.cc
Modify /third_party/libyuv/source/rotate.cc
Add /third_party/libyuv/source/rotate_any.cc
Modify /third_party/libyuv/source/rotate_argb.cc
Add /third_party/libyuv/source/rotate_common.cc
Add /third_party/libyuv/source/rotate_gcc.cc
Modify /third_party/libyuv/source/rotate_mips.cc
Modify /third_party/libyuv/source/rotate_neon.cc
Modify /third_party/libyuv/source/rotate_neon64.cc
Add /third_party/libyuv/source/rotate_win.cc
Modify /third_party/libyuv/source/row_any.cc
Modify /third_party/libyuv/source/row_common.cc
Add /third_party/libyuv/source/row_gcc.cc
(from /third_party/libyuv/source/row_posix.cc
:f42012e526f218f4607e5d678c5bd44bb5978bff)
Modify /third_party/libyuv/source/row_neon.cc
Modify /third_party/libyuv/source/row_neon64.cc
Delete /third_party/libyuv/source/row_posix.cc
Modify /third_party/libyuv/source/row_win.cc
Modify /third_party/libyuv/source/scale.cc
Add /third_party/libyuv/source/scale_any.cc
Modify /third_party/libyuv/source/scale_argb.cc
Modify /third_party/libyuv/source/scale_common.cc
Add /third_party/libyuv/source/scale_gcc.cc
(from /third_party/libyuv/source/scale_posix.cc
:f42012e526f218f4607e5d678c5bd44bb5978bff)
Modify /third_party/libyuv/source/scale_neon.cc
Modify /third_party/libyuv/source/scale_neon64.cc
Delete /third_party/libyuv/source/scale_posix.cc
Modify /third_party/libyuv/source/scale_win.cc
update libyuv to r1456picks up build warning fixes for visual studio 2015
Change-Id : Idea85fa70d1aeb2a46ea355b87fe41ec5b2b9520
-
cant find out how to make auto exit with ffmpeg in visual studio
27 juillet 2017, par Beni BlinchesI have a process which is a song that is playing audio from
youtube
usingffmpeg
, and I want the song to stop when its done. I have this functionprivate Process CreateStream(string path)
{
Program.current_s = new Process();
Program.current_s.Exited += new EventHandler(WhenSongEnds);
Program.current_s.StartInfo = new ProcessStartInfo
{
FileName = "cmd.exe",
Arguments = $"/C youtube-dl.exe -o - {path} | ffmpeg -i pipe:0 -ac 2 -f s16le -ar 48000 pipe:1",
UseShellExecute = false,
RedirectStandardOutput = true,
CreateNoWindow = true
};
Console.WriteLine(" ffmpeg is ready");
Program.current_s.Start();
return Program.current_s;
}I tried to use
autoexit
andffplay
. But, I cant get it right, because I’m quite unfamiliar with the software -
How to compile ffmpeg commands in android studio ?
24 août 2020, par Junaid KhanI have added ffmpeg dependency in my project


implementation 'com.github.hiteshsondhi88.libffmpeg:FFmpegAndroid:0.2.5'



When I run the prject I am getting error.


java.io.IOException: Cannot run program "/data/user/0/com.muhana.videomerger/files/ffmpeg": error=2, 
No such file or directory



The instructions for using ffmpeg are :


Set environment variable


export ANDROID_NDK=Android NDK Base Path


Run following commands to compile ffmpeg


sudo apt-get —quiet —yes install build-essential git autoconf libtool pkg-config gperf gettext yasm python-lxml


./init_update_libs.sh


./android_build.sh


To update submodules and libraries you can use ./init_update_libs.sh command
Find the executable binary in build directory.
If you want to use FONTCONFIG then you need to specify your custom fontconfig config file (e.g - "FONTCONFIG_FILE=/sdcard/fonts.conf ./ffmpeg —version", where /sdcard/fonts.conf is location of your FONTCONFIG configuration file)


I need help for executing these commands. How to run these commands properly ?