Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (105)

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

  • How can i have a good frame quality with PHP5-FFMPEG ?

    13 mars 2012, par Yeppao

    I'm trying tu use PHP5-FFMPEG in my website, but when i try to take some frame of any movie, the quality of this frame is really poor...

    Here's the simply way i use to write this frames into images.

     $frame = $mov->getFrame($_GET['frame']);
     $img = $frame->toGDImage();
     header("Content-type: image/jpeg");
     imagejpeg($img);

    Can i have a better quality with this extension ? Or I have to invoke a ffmpeg command line ?

    Image link :
    http://i.stack.imgur.com/OKXUj.jpg

  • ffmpeg ignores -metadata option when video is encoded

    30 octobre 2018, par Rafael Lima

    I have a video with the following metadata :

    rotate : 90

    I’m using ffmpeg (4.0 binaries from windows downloaded from official website) to encode it and I want to delete this metadata information.

    If I do :
    ffmpeg -i input.mp4 -c copy -metadata:s:v:0 rotate= output.mp4
    the output will have removed the metadata.

    But if I do :
    ffmpeg -i input.mp4 -c:v libx264 -metadata:s:v:0 rotate= output.mp4
    then I still have the undesired metadata.

    Is there a way to remove metadata while encoding ?

  • ffmpeg ignores -metadata option when video is encoded

    30 octobre 2018, par Rafael Lima

    I have a video with the following metadata :

    rotate : 90

    I’m using ffmpeg (4.0 binaries from windows downloaded from official website) to encode it and I want to delete this metadata information.

    If I do :
    ffmpeg -i input.mp4 -c copy -metadata:s:v:0 rotate= output.mp4
    the output will have removed the metadata.

    But if I do :
    ffmpeg -i input.mp4 -c:v libx264 -metadata:s:v:0 rotate= output.mp4
    then I still have the undesired metadata.

    Is there a way to remove metadata while encoding ?