
Recherche avancée
Médias (16)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (36)
-
Gestion de la ferme
2 mars 2010, parLa 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, parUn 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, parFormulaire 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 Heubergerthe 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 chingI am ching.


I use the following command to transcode h264 to h265.


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



But the result is




Unknown encoder 'libx265'




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


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



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

The result is




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




It seems that ffmpeg does not support h265.


How can I solve this problem ?


-
How to make all the edit in just one command ?
2 août 2023, par bartcheI'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.


Command that runs first :


ffmpeg -i input.mp4 -filter_complex pad="in_w:in_h+150:0:0",subtitles="subtitle.srt:force_style='Fontsize=24,PrimaryColour=&H000CCFF&,Bold,Shadow=12'" -vcodec libx264 output.mp4



Command that runs second :


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+240:0:-120",drawtext="fontfile=/home/ubuntu/test/rhumasinera.ttf:text='My Text Here':fontcolor=red:fontsize=82:x=15:y=30",drawtext="fontfile=/home/ubuntu/test/rhumasinera.ttf:text='My Text Here':fontcolor=red:fontsize=82:x=15:y=880" -vcodec libx264 output2.mp4



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.