Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (90)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

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

  • Using ffmpeg to encode a high quality video

    7 janvier 2013, par CakeMaster

    I have a set of video frames saved as images in a directory, and I'm trying to encode these to a good quality video, however every setting and every format I try produces very noticeable artifacts.

    The basic command is this :

    ffmpeg -r 25 -i %4d.png myvideo.mpg

    and I've tried the minrate and maxrate flags. Any of mpg, avi, mov, flv formats will do.

    Any suggestions for settings ? Final file size is not an issue.

  • whats wrong in this command for merging 2 video using ffmpeg [duplicate]

    8 juillet 2019, par vikram

    I am trying to merge 2 videos the 1st video created from custom camera media recorder(1280*720) (this video has audio file)and 2nd video created from merging 2 images(this video has no audio file) but it wont work..

          String [] merge2video={ "-i", path1,"-i", new
     path2,"-filter_complex", "[0:0] [0:1] [1:0] [1:1]  concat=n=2:v=1:a=1
     [v]
    [a]", "-map", "[v]", "-map", "[a]","-strict", "experimental", "-vcodec"
    ,"libx264" ,"-preset" ,"ultrafast" ,"-crf" ,"30", output};

    I want to merge 2 videos only

  • How video editor show real time preview of videos ? [closed]

    3 juin 2024, par SWIK

    I am trying to create a simple video editor that combine two video by layering one over another, i can easily do it with ffmpeg, but I am not sure how can I make a preview of it before making final video ? How video editor display preview without building them ? I am looking towards create a react application.