
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (111)
-
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin 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 (...) -
Les notifications de la ferme
1er décembre 2010, parAfin d’assurer une gestion correcte de la ferme, il est nécessaire de notifier plusieurs choses lors d’actions spécifiques à la fois à l’utilisateur mais également à l’ensemble des administrateurs de la ferme.
Les notifications de changement de statut
Lors d’un changement de statut d’une instance, l’ensemble des administrateurs de la ferme doivent être notifiés de cette modification ainsi que l’utilisateur administrateur de l’instance.
À la demande d’un canal
Passage au statut "publie"
Passage au (...) -
Initialisation de MediaSPIP (préconfiguration)
20 février 2010, parLors de l’installation de MediaSPIP, celui-ci est préconfiguré pour les usages les plus fréquents.
Cette préconfiguration est réalisée par un plugin activé par défaut et non désactivable appelé MediaSPIP Init.
Ce plugin sert à préconfigurer de manière correcte chaque instance de MediaSPIP. Il doit donc être placé dans le dossier plugins-dist/ du site ou de la ferme pour être installé par défaut avant de pouvoir utiliser le site.
Dans un premier temps il active ou désactive des options de SPIP qui ne le (...)
Sur d’autres sites (8768)
-
How can I apply custom font on watermark that created by FFmpeg
7 août 2019, par DensI am creating a video with FFmpeg library. I want access fonts from Android assets folder and overlay on my video as watermark.
What is the path for Android assets folder to access and apply custom font on FFmpeg ?
I can overlay watermark on video but when I try to apply custom font on it, it gives error related to not exist, etc.What I found till now :
The alternative solution that I found is the create an image file and write text on it and overlay image on video. problem is text and image being stretch output. I need a solution for it.
String[] execute = {"-y", "-i", videoPath, "-i", image, "-filter_complex",
"[1:v]scale=" + width + ":" + height + "[ovrl],[0:v][ovrl]overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2"
,"-strict" , "experimental", "-vcodec", "libx264" , "-preset", "ultrafast" , "-crf", "20", "-acodec", "aac", "-ar",
"44100", "-ac", "2", "-b:v", "36000k", outputPath.getPath()};I thought
itz
output will be good but it stretching my text and image.I want some perfect solution to apply assets font on FFmpeg.
Thank you in Advance.
-
ffmpeg setpts apply uniform offset without re-encoding
22 novembre 2018, par VinayI have a series of videos that I’m converting from
.mov
to.ts
and then create an HLS playlist for. I’m able to figure out the ending pts for both the audio and video streams of any given video and am apply that ending (cumulative) offset when converting later videos in the sequence. For instance :ffmpeg -y -i 1.mov \
-filter:a "asetpts=PTS-STARTPTS+367534" \
-filter:v "setpts=PTS-STARTPTS+363000" \
-codec:v libx264 -crf 18 -preset veryfast \
-acodec aac -muxdelay 0 1.tsThis works but requires a decent amount of CPU. I’d like to be able to ideally copy the video/audio streams. Is there any way to apply a uniform pts offset for the audio/video streams of a
.ts
file without re-encoding the whole thing ? -
How to apply left and right panning to 8 channels of audio using ffmpeg
12 juin 2022, par jiiiinI have 1 video(mov) and 8 audio(wav) files. I want to apply panning left and right to 8 mono audio by combining all of these. 1,3,5,7ch-left 2,4,6,8-right. I want to do this using ffmpeg.