Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (65)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • 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 ;

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

  • 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.

  • 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
  • How to find transitions in a DVD ?

    6 juin 2019, par Conrad C

    I am watching instructional videos on a mp4 and I want to find the time at which each new instruction/chapter starts. Every time a new instruction is show, it is preceded with a transition video animation ex :" Instruction #3...."
    I tried this command :

    ffmpeg -i HowToCook.mp4 -filter:v "select='gt(scene,0.7)',showinfo" -f null - 2> ffout2

    But this doesn’t work, and it gives me the times everytime the camera man moves the camera. It doesn’t seem to work on transitions. Is there another command that could work better ?