Recherche avancée

Médias (91)

Autres articles (98)

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

  • Merge "Allow —cpu= to work for x86."

    25 août 2010, par Fritz Koenig

    Merge "Allow —cpu= to work for x86."

  • Android video don't work - ffmpeg [closed]

    6 septembre 2012, par user1439500

    I have two videos, the first video work in android the second one no, why ?

    (WORK)

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'out.mp4' :

    Metadata :

    major_brand     : isom
    minor_version   : 512
    compatible_brands: isomiso2avc1mp41
    encoder         : Lavf52.48.0
    Duration: 00:00:30.00, start: 0.000000, bitrate: 854 kb/s
    Stream #0.0(eng): Video: h264, yuv420p, 800x800 [PAR 4:3 DAR 4:3], 722 kb/s, PAR 533:400 DAR 533:400, 25 fps, 25 tbr, 25 tbn, 50 tbc
    Stream #0.1(eng): Audio: aac, 44100 Hz, stereo, s16, 127 kb/s

    (DON'T WORK)

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '2u72rNckWqq.mp4' :

    Metadata :

    major_brand     : qt
    minor_version   : 537199360
    compatible_brands: qt
    encoder         : MEncoder Sherpya-SVN-r30075-4.2.5
    Duration: 00:00:30.01, start: 0.000000, bitrate: 857 kb/s
    Stream #0.0(eng): Video: h264, yuv420p, 320x240 [PAR 1:1 DAR 4:3], 724 kb/s, 25 fps, 25 tbr, 1k tbn, 50 tbc
    Stream #0.1(eng): Audio: aac, 44100 Hz, stereo, s16, 128 kb/s
  • FFMpeg4Android picture to video command doesn't work

    31 mai 2014, par Nuriel Aventador Taran

    I work with FFMpeg4Android to edit and create videos. I run a command but it doesn’t work, the command goes and proceeds but in logcat I can see that the "transcoding failed" and the out1.mp4 doesn’t work.
    I took my command from : ffmpeg officel site.

    My code :

    String str2="ffmpeg -loop 1 -i "+Environment.getExternalStorageDirectory() + "/videokit/pic1.jpg -c:v libx264 -t 30 -pix_fmt yuv420p "+Environment.getExternalStorageDirectory() + "/videokit/out1.mp4";
       try {
           setCommand(str2);
           runTranscoing();
       } catch (Exception e) {
           e.printStackTrace();
           Log.d("FFMpeg","couldn't execute command");
       }

    LogCat (doesn’t fit) : `full LogCat

    Thanks in advance