Recherche avancée

Médias (0)

Mot : - Tags -/content

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

Autres articles (56)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

  • Option not found at ffmpeg

    28 décembre 2016, par AlphaWolf

    I tried to add watermark to a video using python by call subprocess ffmpeg. My code :

    command = "C:\\VidMaker\\source\\ffmpeg.win32.exe -i C:\\VidMaker\\kq"+str(i)+".mp4 -i C:\\VidMaker\\1.png -filter_complex" "[0:v]setsar=sar=1[v];[v][1]blend=all_mode='overlay':all_opacity=0.7" "-vcodec libx264 C:\VidMaker\\Res"+str(i)+".mp4"
    subprocess.check_call(command, shell = False)

    the result is :

    Unrecognized option 'filter_complex[0:v]setsar=sar=1[v];[v][1]blend=all_mode='overlay':all_opacity=0.7-movflags'.
    Error splitting the argument list: Option not found
    Traceback (most recent call last):
     File "C:\VidMaker\add.py", line 10, in <module>
       subprocess.check_call(command, shell = False)
     File "C:\Python27\lib\subprocess.py", line 186, in check_call
       raise CalledProcessError(retcode, cmd)
    subprocess.CalledProcessError: Command 'C:\VidMaker\source\ffmpeg.win32.exe -n -i C:\VidMaker\kq2.mp4 -i C:\VidMaker\1.png -filter_complex[0:v]setsar=sar=1[v];[v][1]blend=all_mode='overlay':all_opacity=0.7-movflags +faststart C:\VidMaker\Res2.mp4' returned non-zero exit status 1
    [Finished in 0.4s with exit code 1]
    </module>

    edit1 : it run ok without option :

    command = "C:\\VidMaker\\source\\ffmpeg.win32.exe -i C:\\VidMaker\\kq"+str(i)+".mp4 -i C:\\VidMaker\\1.png -filter_complex overlay=10:10 C:\VidMaker\\Res"+str(i)+".mp4"

    What happen with the option and how can fix it ?Thanks !

    edit2 : i need to call like that because my VPS cannot run like my computer, in my computer it run successfully with :

    subprocess.call(['ffmpeg',
     '-i', 'funvi 155.mp4',
     '-i', '1.png',
     '-filter_complex', "[1:v]format=argb,geq=r='r(X,Y)':a='0.15*alpha(X,Y)'[zork]; [0:v][zork]overlay",
     '-vcodec', 'libx264',
     'myresult6.mp4'])
  • libavfilter/vf_dnn_detect : Add model_type option.

    21 novembre 2023, par Wenbin Chen
    libavfilter/vf_dnn_detect : Add model_type option.
    

    There are many kinds of detection DNN model and they have different
    preprocess and postprocess methods. To support more models,
    "model_type" option is added to help to choose preprocess and
    postprocess function.

    Signed-off-by : Wenbin Chen <wenbin.chen@intel.com>
    Reviewed-by : Guo Yejun <yejun.guo@intel.com>

    • [DH] libavfilter/vf_dnn_detect.c
  • avformat/libsrt : fix name of timeout option

    13 février 2020, par Marton Balint
    avformat/libsrt : fix name of timeout option
    

    rw_timeout is the generic URLcontext option, not the protocol specific timeout
    option, also ?rw_timeout never worked because ?timeout was parsed instead.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] doc/protocols.texi
    • [DH] libavformat/libsrt.c