
Recherche avancée
Autres articles (58)
-
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
MediaSPIP en mode privé (Intranet)
17 septembre 2013, parÀ partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)
Sur d’autres sites (8612)
-
Can i insert music in this application ?
22 juin 2017, par Remi’m having the text code to adjust video like this :
// no crop:
ffmpeg -y -i "input.flv" -i "Monitor.png" -filter_complex "[0:v]scale=870:536 [v1]; movie=MonitorBG.avi:loop=999,setpts=N/(FRAME_RATE*TB) [v2]; [v2][v1]overlay=shortest=1:x=422:y=9 [v3]; [v3][1:v]overlay=0:0,setdar=16/9; [0:a]volume=3" -vcodec libx264 -pix_fmt yuv420p -r 30 -g 60 -b:v 1000k -minrate 1000k -maxrate 1000k -profile:v main -level 3.1 -acodec libmp3lame -b:a 128k -ar 44100 -preset fast "output.avi"
cmd
//crop:
ffmpeg -y -i "input.flv" -i "Monitor.png" -filter_complex "[0:v]scale=-1:720,crop=1025:510:135:113,scale=870:536 [v1]; movie=MonitorBG.avi:loop=999,setpts=N/(FRAME_RATE*TB) [v2]; [v2][v1]overlay=shortest=1:x=422:y=9 [v3]; [v3][1:v]overlay=0:0,setdar=16/9; [0:a]volume=3" -vcodec libx264 -pix_fmt yuv420p -r 30 -g 60 -b:v 1000k -minrate 1000k -maxrate 1000k -profile:v main -level 3.1 -acodec libmp3lame -b:a 128k -ar 44100 -preset fast "output.avi"
cmd
// the added Code in MyRenderTools v1004:
ffmpeg -y -i "{input}.*" -i "Monitor.png" -filter_complex "[0:v]scale=870:536 [v1]; movie=MonitorBG.avi:loop=999,setpts=N/(FRAME_RATE*TB) [v2]; [v2][v1]overlay=shortest=1:x=422:y=9 [v3]; [v3][1:v]overlay=0:0,setdar=16/9; [0:a]volume=3" -vcodec libx264 -pix_fmt yuv420p -r 30 -g 60 -b:v 1000k -minrate 1000k -maxrate 1000k -profile:v main -level 3.1 -acodec libmp3lame -b:a 128k -ar 44100 -preset fast "{output}.avi"
cmdis there anyway can i insert the music through the video that i adjusted ??Can anyone help me.Thank you
-
Ducking music using FFmpeg
24 février, par angel_30I want to duck a music audio with a speech audio using
FFmpeg
(ducking is commonly used to lower background music anytime a person speaks, then raises it when that person finishes speaking). How can I do it withFFmpeg
or any other tools (if any) ?

There was an FFmpeg filter called
sidechaincompress
which merges the two, but it doesn't "duck" them. It takes 2 audio inputs, 1st input to be compressed depending on the signal of 2nd input and later compressed signal to be merged with 2nd input :

ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"



-
Flutter : Saved Audio Not Accessible in Music Player Apps
17 juillet 2024, par HusenI'm developing a Flutter app that generates MP3 audio files.
I can successfully save these files to the device storage. However, they're not showing up in any music player apps.
I'm using the
path_provider
package to get a suitable directory for saving the audio files.

How can I make the saved MP3 files discoverable by music player apps ?