Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (67)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • Revision 732e49b666 : Remove bitrotted example code : example_xma Doesn't work. Doesn't build. Not sup

    9 mai 2014, par Tom Finegan

    Changed Paths :
     Modify /examples.mk


     Delete /examples/example_xma.c



    Remove bitrotted example code : example_xma

    Doesn’t work. Doesn’t build. Not supported.

    Change-Id : I5a2f9965afdda82370049c10ebcbe77ac4c6c9b9

  • Command work, but have a error when used by sh [on hold]

    6 mai 2014, par DrakaSAN

    I have this script :

    extract.sh :

    ffmpeg –i $1 –ss $2 –t $3 –c:v copy –c:a copy $4

    If I type

    ffmpeg –i full.mp4 –ss 114 –t 30 –c:v copy –c:a copy out.mp4

    All go well. But if I try

    sh extract.sh full.mp4 114 30 out.mp4

    I get :

    ffmpeg version 2.1 Copyright (c) 2000-2013 the FFmpeg developers
     built on May  5 2014 11:41:48 with gcc 4.6 (Ubuntu/Linaro 4.6.3-1ubuntu5)
     configuration: --enable-gpl
     libavutil      52. 48.100 / 52. 48.100
     libavcodec     55. 39.100 / 55. 39.100
     libavformat    55. 19.104 / 55. 19.104
     libavdevice    55.  5.100 / 55.  5.100
     libavfilter     3. 90.100 /  3. 90.100
     libswscale      2.  5.101 /  2.  5.101
     libswresample   0. 17.104 /  0. 17.104
     libpostproc    52.  3.100 / 52.  3.100
    [NULL @ 0x2a20b00] Unable to find a suitable output format for '–i'
    –i: Invalid argument

    What does sh do to the argument to make it unreadable in the script ?

    EDIT :

    user@domain:~/test$ sh extract.sh cdr.mp4 0 7 generique.mp4
    ffmpeg –i cdr.mp4 –ss 0 –t 7 –c:v copy –c:a copy generique.mp4
  • FFMPEG - How does it work expression in blend

    30 juillet 2015, par ManelAcacio

    I am trying to do a crossfade between two videos (I want with many like we do with the slideshow, with an incremental file name, but want to try with 1 first).

    I am using this command but I cant understand the expression :

    ffmpeg -y -i 1.mp4 -i 2.mp4 -filter_complex "[1:v][0:v]blend=all_expr='A*(if(gte(T,3),1,T/3))+B*(1-(if(gte(T,3),1,T/3)))'" ultimo.mp4

    The videos are 5 seconds each and I want that the last 1 or 2 seconds of the first video blend with the first or second second of the other video, like crossfading.

    Anyone help me understand the expression and help me to achieve the result ?

    Thank you very much.