Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (80)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

Sur d’autres sites (9966)

  • Revision 12eb2d0267 : Correct bug in loopfilter initialization The memset sets 16 bytes rather than t

    9 août 2013, par Adrian Grange

    Changed Paths :
     Modify /vp9/common/vp9_loopfilter.c



    Correct bug in loopfilter initialization

    The memset sets 16 bytes rather than the correct size of the
    final array dimension (MAX_MODE_LF_DELTAS).

    (In response to bug posted by Manjit Hota to codec-devel
    and webm-discuss lists)

    Change-Id : I8980f5aa71ddc9d7ef57c5b4700bc28ddf8651c7

  • flutter_ffmpeg package name

    22 septembre 2021, par JoergP

    when installing flutter_ffmpeg I should set the package name in

    


    android/build.gradle

    


     ext {&#xA;  flutterFFmpegPackage  = "<flutter ffmpeg="ffmpeg" package="package" listed="listed" in="in" section="section">"&#xA;</flutter>

    &#xA;

    }

    &#xA;

    and in ios/Podfile

    &#xA;

    if plugin_name == &#x27;flutter_ffmpeg&#x27;&#xA;      pod &#x27;flutter_ffmpeg/<package>&#x27;, &#xA;</package>

    &#xA;

    Do I just enter "flutter_ffmpeg" here or is the "package name" different ?&#xA;How does the final code should look like ?

    &#xA;

    Thanks !

    &#xA;

  • Concat three videos with one audio [duplicate]

    26 septembre 2018, par Михаил Безуглый

    Thank you for coming here.
    I have three video clips (the first is 3 seconds, the second is 20 seconds, the third is 2 seconds), I connect them using the following command :

    ffmpeg -i opening.mp4 -i middle.mp4 -i ending.mp4 -filter_complex "[0:v] [1:v] [2:v] concat=n=3:v=1 [v]" -map "[v]" output.mp4

    Since all three videos do not have audio tracks, I do not need to include [a]. And then the day came when I needed it. I have an audio track,
    duration of 35 seconds(which is much larger than the output.mp4 video) and I need this audio to be connected to the whole video.
    1) Do I need to crop the video to the length that is obtained by merging all three videos ?
    2) Is it possible to do this with one command, or i need first have to concatetate all together with my command, and then merge video and audio track ?