Recherche avancée

Médias (0)

Mot : - Tags -/performance

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

Autres articles (51)

  • 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

  • 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

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

  • Unable to find a suitable output format for 'ΓÇôi'

    7 juillet 2019, par Kaustubh Bhor

    I am trying to add watermark png to multiple videos using subprocess.Popen() but the code results in error

    import os

    def runBash(command):
      os.system(command)

    inpu="1.mp4"
    png="crop.png"
    str="ffmpeg –i "+inpu+" -vf "+ "\"movie="+png+" [watermark]; [in][watermark] overlay=10:10 [out]\" "+"eargaergaerg"+inpu
    runBash(str)
    print(str)

    Error

    error: [NULL @ 000002210b65af40] Unable to find a suitable output format for 'ΓÇôi'
    ΓÇôi: Invalid argument
  • Evolution #3232 : Intégrer un #FORMULAIRE_DESINCRIPTION en complément du #FORMULAIRE_INSCRIPTION

    8 juillet 2019, par RastaPopoulos ♥

    Obligation légale = urgent à ajouter au plus vite.

  • how to find video and audio stream times without the deprecated values ? libav 10.5

    23 novembre 2014, par Narayana James Emery

    After looking into the documentation, AVStream.pts has been deprecated. Before I was using this loop to try and get the video and audio time. it’s the same as whats in the api-example.c (which no longer works) :

    if (audioStream_)
       {
           VideoTime = (double)videoStream_->pts.val*videoStream_->time_base.num/videoStream_->time_base.den;
           do
           {
               AudioTime = (double)audioStream_->pts.val*audioStream_->time_base.num/audioStream_->time_base.den;
               ret = WriteAudioFrame();
           }
           while (AudioTime < VideoTime && ret);
           if (ret < 0)
               return ret;
       }

    what is the current alternative ? I haven’t been able to get anything to work as of yet and I’ve been searching for around 3 hours.