
Recherche avancée
Autres articles (108)
-
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 ;
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 (9980)
-
Revision b9a569da41 : Merge "gen_msvs_*proj.sh : speed up file generation"
7 juin 2014, par James ZernChanged Paths :
Modify /build/make/gen_msvs_proj.sh
Modify /build/make/gen_msvs_vcxproj.sh
Merge "gen_msvs_*proj.sh : speed up file generation" -
Revision 78d0968e09 : gen_msvs_*proj.sh : speed up file generation execute fix_path once on the source
4 juin 2014, par James ZernChanged Paths :
Modify /build/make/gen_msvs_proj.sh
Modify /build/make/gen_msvs_vcxproj.sh
Modify /build/make/msvs_common.sh
gen_msvs_*proj.sh : speed up file generationexecute fix_path once on the source file list rather than once per entry
Change-Id : Ibc8226e391b3028c1b0bcfeab83c790387c9fe23
-
Trim / Cut video on Android using FFMpeg's Copy
6 août 2012, par Kevin PWe're trying to replicate the functionality of this command line ffmpeg directive using the FFMpeg c api through JNI calls on Android.
ffmpeg -ss 2 -t 120 -vcodec copy -acodec copy -i input.file output.file
Basically, given a start and end time, we wish to copy (not re-encode) a small(er) segment of video from the larger (input) video source.
We've been using the wonderful JavaCv wrapper to openCv and FFMpeg, but we just cannot figure out how to do this simple bit of work. We've been scouring the ffmpeg.c and related sources and while I now understand that it switches to stream_copy and remuxing rather than re-encoding when the codec is specified as copy I cannot for the life of me identify what series of method calls to make to replicate this through the C api. Does anyone have an example JNI file for doing this ? Or are there rockstar C types that can explain how I get from that command line to api calls ? We've spent the better part of two weeks working on this (we're not native C guys) and we're at the point where we just need to ship some code. Any example code, especially JNI code or method call maps etc. would be greatly appreciated !