Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (52)

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

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

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

  • avformat/dash : move reused API to common file and header file

    1er septembre 2017, par Steven Liu
    avformat/dash : move reused API to common file and header file
    

    move from dashenc, move DASHTmplId and dash_fill_tmpl_params to
    dash.c, they will be used by dash demuxer and dash muxer.

    v2 fixed :
    1. rename common file from dashcomm.* to dash.*
    Suggested-by : Hendrik Leppkes <h.leppkes@gmail.com>

    v3 fixed :
    1. rename header file pre defined
    2. add ff_ prefix for the internal API
    Suggested-by : James Almer <jamrial@gmail.com>

    Suggested-by : Timo Rothenpieler <timo@rothenpieler.org>
    Reviewed-by : wm4 <nfxjfg@googlemail.com>
    Signed-off-by : Steven Liu <lq@onvideo.cn>

    • [DH] libavformat/Makefile
    • [DH] libavformat/dash.c
    • [DH] libavformat/dash.h
    • [DH] libavformat/dashenc.c
  • how to name the output file same as input file but different extension after video conversion ? [duplicate]

    4 mars 2018, par kofhearts

    This question already has an answer here :

    I am using this line to batch convert mp4 files to webm files. For all mp4 files i need the output files to be of same name but .webm extension. For example if i have video1.mp4 and video2.mp4 then after conversion i need two files i.e video1.webm and video2.webm. How can i achieve this using bash script ?

    for f in *.mp4; do ffmpeg -i "$f" -c:v libvpx -crf 10 -b:v 1M -c:a libvorbis "$f".webm;  done

    The above code will change the output file to video1.mp4.webm. Thanks !

  • How to make ffmeg automatically overwrite a file with the same name ?

    27 janvier 2021, par tkinterpy

    I have a script that downloads audio and video from a youtube link,&#xA;then ffmpeg merges them together — but if I want to merge again, it will output a file with the same name and it will ask me in the terminal :

    &#xA;

    enter image description here

    &#xA;

    How can I make it so it automatically overwrite ?

    &#xA;