Recherche avancée

Médias (91)

Autres articles (73)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (14520)

  • Evolution #2893 (Nouveau) : Utilisation de l’API file HTML5 pout uploader les documents

    1er novembre 2012, par Charles Stephan

    Bonjour à tous, Je me permet ce premier ticket car je ne trouve pas de demandes relatives à cette simple possibilité. Je trouverais super de pouvoir observer la progression des uploads avec… une barre de progression. Plutôt qu’un gif animé. Je pourrais me charger de son design et son integration. (...)

  • How to make a videoplayer using FFmpeg on android ndk

    24 juillet 2012, par LMDS

    I'm trying to make a Video Player using ffmpeg and I use this tutorial http://dranger.com/ffmpeg/tutorial08.html, what I understand this tutorial convert a video to a video Image YUV, I'm trying to make the file that interact from .c to .java, I have this

    code c from the tutorial08(http://dranger.com/ffmpeg/tutorial08.c), then I made

    public class RtspReceiver extends Activity

    public SurfaceView sfv;
    @Override
    public void onCreate(Bundle savedInstanceState) {
       super.onCreate(savedInstanceState);
       setContentView(R.layout.principal);
       sfv=(SurfaceView) findViewById(R.id.im);
    }

    /* load our native library */
    static {
       System.loadLibrary("Interface");
    }

    private static native void Receive(SurfaceView  sf);

    In the c I'm trying to understand how I can use this

    JNIEXPORT void JNICALL isec_projecto_rtspreceiver_RtspReceiver_Receive(JNIEnv * env, jobject  obj, jobject Surface)
    {
    //what I have to put in here?
    }

    How can I put the SurfaceView that I have in the java, in the c ???
    and other thing, in the tutorial08.c how can I extract the video and put them in the java ? am I thinking correctly ?

  • Is it possible to force I_PCM mode in x264 ?

    10 octobre 2012, par cloudraven

    I need to use I_PCM mode in all blocks for some of I frames in video being compressed using x264. I know those frames will take a huge amount of space, but it is a requirement to keep them as faithful to the source as possible and to make them very fast to encode / decode (I_PCM should be super fast and lossless). Is there a way to force x264 to programatically do this.
    I am using libx264 to do this, but I haven't found a way to specify custom macroblock type within a given frame. If it is not supported, how hard would it be to modify the library to do so and where should I look at first ?