Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (36)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

  • ANNEXE : Les extensions, plugins SPIP des canaux

    11 février 2010, par

    Un plugin est un ajout fonctionnel au noyau principal de SPIP. MediaSPIP consiste en un choix délibéré de plugins existant ou pas auparavant dans la communauté SPIP, qui ont pour certains nécessité soit leur création de A à Z, soit des ajouts de fonctionnalités.
    Les extensions que MediaSPIP nécessite pour fonctionner
    Depuis la version 2.1.0, SPIP permet d’ajouter des plugins dans le répertoire extensions/.
    Les "extensions" ne sont ni plus ni moins que des plugins dont la particularité est qu’ils se (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (4911)

  • How to ffmpeg - encode a video for the web ?

    23 août 2014, par Michael Heuberger

    the videos I currently encode with ffmpeg for the web have a problem : I cannot repeat these in a loop nor jump to a scene. They only can be played once and that’s it !

    Maybe I have to add some more parameters ? Not sure which ones.

    I am encoding the videos into MP4 and WebM both so that they can be played in all browsers within the <video></video> element. This with the nodejs module ttps ://github.com/fluent-ffmpeg/node-fluent-ffmpeg. Here an example of the command for the WebM version only :

    ffmpeg -r 14.713847936548586 -f image2 -pix_fmt yuv420p -i /home/michael.heuberger/binarykitchen/code/videomail.io/var/local/tmp/clients/11e4-2a94-058ed290-9c13-4572b2c7aa99/frames/%d.webp -y -an -vcodec libvpx -b:v 386k -deadline realtime -cpu-used 5 -crf 4 /home/michael.heuberger/binarykitchen/code/videomail.io/var/local/tmp/clients/11e4-2a94-058ed290-9c13-4572b2c7aa99/videomail_preview.webm

    Any clues are very welcome !

  • how to use FFMPEG to transcode h264 to h265 on Ubuntu 12.04 ?

    13 avril 2021, par ching

    I am ching.

    &#xA;

    I use the following command to transcode h264 to h265.

    &#xA;

    ffmpeg -i input.mp4 -c:v libx265 -crf 26 -preset fast -c:a aac -b:a 128k output.mp4&#xA;

    &#xA;

    But the result is

    &#xA;

    &#xA;

    Unknown encoder 'libx265'

    &#xA;

    &#xA;

    But I have compiled h265 by the following command before using the above command.

    &#xA;

    sudo apt-get install cmake mercurial&#xA;cd ~/ffmpeg_sources&#xA;hg clone https://bitbucket.org/multicoreware/x265&#xA;cd ~/ffmpeg_sources/x265/build/linux&#xA;PATH="$HOME/bin:$PATH" cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX="$HOME/ffmpeg_build" -DENABLE_SHARED:bool=off ../../source&#xA;make&#xA;make install&#xA;

    &#xA;

    Then, I use ffmpeg -codecs to check if it supports to encode h265.

    &#xA;

    The result is

    &#xA;

    &#xA;

    D.V.L. hevc H.265 / HEVC (High Efficiency Video Coding)

    &#xA;

    &#xA;

    It seems that ffmpeg does not support h265.

    &#xA;

    How can I solve this problem ?

    &#xA;

  • How to make all the edit in just one command ?

    2 août 2023, par bartche

    I'm new to ffmpeng so perdon me if it is a stupid question but I've been trying to put these 2 lines together and everytime it show me some different error.

    &#xA;

    Command that runs first :

    &#xA;

    ffmpeg -i input.mp4 -filter_complex pad="in_w:in_h&#x2B;150:0:0",subtitles="subtitle.srt:force_style=&#x27;Fontsize=24,PrimaryColour=&amp;H000CCFF&amp;,Bold,Shadow=12&#x27;" -vcodec libx264 output.mp4&#xA;

    &#xA;

    Command that runs second :

    &#xA;

    ffmpeg -i output.mp4 -i input2.mp4 -filter_complex "[1][0]scale2ref=iw:iw*(1/2)[sat][ep];[ep][sat]vstack",pad="in_w:in_h&#x2B;240:0:-120",drawtext="fontfile=/home/ubuntu/test/rhumasinera.ttf:text=&#x27;My Text Here&#x27;:fontcolor=red:fontsize=82:x=15:y=30",drawtext="fontfile=/home/ubuntu/test/rhumasinera.ttf:text=&#x27;My Text Here&#x27;:fontcolor=red:fontsize=82:x=15:y=880" -vcodec libx264 output2.mp4&#xA;

    &#xA;

    Not sure what I'm doing wrong since it works running the commands separateded. Wanting to do just in one code to make it faster.

    &#xA;