Recherche avancée

Médias (0)

Mot : - Tags -/albums

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (112)

  • 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 ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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 (12802)

  • Running ffmpeg command in android gives Protocol not found error for image path

    20 octobre 2012, par Abdul Mateen

    I am trying to use ffmpeg from android command line to convert images into video.
    I have stored my sequence of images on sdcard.When I run ffmpeg command to convert images into video, ffmpeg command give me error Protocol not found.My command is like this

    /data/data/package/files/ffmpeg -r 40 -qscale 2 -i /mnt/sdcard/images/img%d.jpg /mnt/sdcard/images/finalvideo.mp4

    Error is like this /mnt/sdcard/vid.mp4: Protocol not found

    I found the same error message mentioned in error.c file.But I am not getting the type of error and condition when it throws the error.
    Also when I run ffmpeg command i.e. ffmpeg -protocols from android and linux,the number of supported protocols are not same.
    I found file and many protocols missing in android.

    I need solution for this urgent...Please do help me

    Thanking you !!!

  • android ffmpeg set frame-rate

    4 février 2013, par Stefan Alexandru

    I am getting a video stream from a camera and I am writing the frames in a file. The problem is that they are being written with a too big frame rate and I can't find a way to set it programmatically.
    So I think I am looking for the C function called by the console instruction "-r [framerate]"

    I tried setting the option in the avFormatContext but it had no effect.

    AVDictionary *options=NULL;
    av_dict_set(&options,"r","1",0);
       avio_open2(&oc->pb, "path", AVIO_FLAG_WRITE,options);

    after that i am reading frames with av_read_frame(context,&packet) and writting them with av_write_frame(oc,&packet);

    Any ideea what I am doing wrong or how should I tackle this ?

  • How to use existing .so file in my other android project in windows PC ?

    28 mai 2013, par Mihir Shah

    I have to use ffmpeg library for video editing application in android. I have no experience in JNI or NDK. but I have ffmpeg.so file. Can I directly use it in my new android application ?

    I am using it but generating error : Caused by: java.lang.UnsatisfiedLinkError: Couldn't load videokit: findLibrary returned null

    If not, what are the steps to generate .so file ? I have search lot of things but all are in mostly ubuntu. How to generate in windows or mac os ? Can i decompile my existing .so file ?