Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (51)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains 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, par

    Pré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 (7398)

  • 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 ?