
Recherche avancée
Médias (29)
-
#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 (103)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang 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. -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (10243)
-
Ffmpeg MP4 to HLS and Hosting
22 février 2017, par DaveI am new to the world of FFmpeg. I’m currently transcoding my example.mp4 file to Hls with the following command.
ffmpeg -i example_video.mp4 -hls_time 10 -hls_list_size 0 -strict -2 output_video.m3u8
Once I execute this command the transcoding process starts and I get the a list of the following output :
output_video.m3u8
output_video0.ts
output_video1.ts
output_video2.ts
output_video3.ts
output_video4.tsI want to host this on my website so users can see the video.
My question is, is the process of converting the mp4 to hls finished at this point ? Also how should I host this on my website, Should I bundle all these files in one directory and stream the video from the output_video.m3u8 file ?
-
How to do text alignment on box in ffmpeg ?
28 juin 2022, par Dinesh Reddy

ffmpeg -y -i skate.mp4 -filter_complex "drawbox=x=645.7538994800693:y=449.2201039861352:w=700:h=169:color=red@1:t=fill,drawtext=enable='between(t,0,3)':fontfile='344c235b-9bf7-4b13-ad99-ab230b473577.ttf':text='Hello world':fontsize=150:line_spacing=3:x=645.7538994800693:y=449.2201039861352:fontcolor=#000000:borderw=0:bordercolor=#ffffff,rotate=a=0*PI/180:ow=rotw(0*PI/180):oh=roth(0*PI/180):c=black@0" output.mp4


I draw the box using drawbox filter and written the text also but i need to do text alignment in the box like center, right and left. Can you help in this anyone.


Thanks in advance


-
How To Adjust Volume in An Audio Mix With Node Fluent-FFmpeg
8 octobre 2015, par Alexander PerlsI am using the node Fluent-FFmpeg library to mix together two audio files.
My current code :
var ffmpeg = require('fluent-ffmpeg');
ffmpeg("/audioFileOne.wav")
.input("/audioFileTwo.wav")
.complexFilter('amix=duration=first')
.audioFrequency(44100)
.audioCodec('libmp3lame')
.audioQuality(5)
.output("/mixedFile.wav").run();
}This works well. However, try as I might, I can’t figure out how to change the volume level of
audioFileOne.wav
before it is mixed withaudioFileTwo.wav
I am pretty sure I need to add something to this line
.complexFilter('amix=duration=first')
But I seem to be not smart enough to understand the ComplexFilter documentation on this page.
If necessary I can provide some of the code that I have tried, but I don’t want to create more confusion.