Recherche avancée

Médias (0)

Mot : - Tags -/api

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

Autres articles (111)

  • 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

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (11020)

  • FFmpeg concat videos with an overlay

    19 avril 2014, par user3550682

    I am trying to use ffmpeg to concatenate several video files, and add a picture in picture overlay, and output the result to wmv.

    The overlay video will be almost exactly the same length as the input videos concatenated.

    Below is the command I am trying, this creates the right output and the overlay works, but it does not concatenate (and it cuts the overlay to end when the first input video ends).

    ffmpeg -i "concat:f1.mp4|f2.mp4|f3.mp4" -an -vf "movie=overlay.avi, scale=iw:ih [small]; [in][small] overlay=0:0 [out]" –q:v 9 output.wmv
  • Revision 03a60b78db : Add a new control of golden frame boost in CBR mode 0 means that golden boost i

    27 octobre 2014, par Yaowu Xu

    Changed Paths :
     Modify /vp9/encoder/vp9_encoder.h


     Modify /vp9/vp9_cx_iface.c


     Modify /vpx/vp8cx.h


     Modify /vpxenc.c



    Add a new control of golden frame boost in CBR mode

    0 means that golden boost is off, and uses average frame target rate,
    a non-zero number means the percentage of boost over average frame
    bitrate is given initially to golden frames in CBR mode.

    Change-Id : If4334fe2cc424b65ae0cce27f71b5561bf1e577d

  • I am trying to add draggable text view on video

    24 septembre 2021, par Naveed

    I am trying to add draggable textview on video but unable to get
cordinates of textview according to the video I am using ffmpeg for
adding text to video.

    


    val xPos = width?.let {
           (binding.edtXPos.text.toString().toFloat().times(it)).div(100)
      }
val yPos = height?.let {
          (binding.edtYPos.text.toString().toFloat().times(it)).div(100)
     }
Log.e(TAG, "addTextProcess: x=$xPos and y=$yPos", )


    


    I entering percentage of x and y axis to put but I want to get position of dragable textview cordinated according to video pixels.