
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (91)
-
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" -
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. -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (5061)
-
how to trim video in h264 format using ffmpeg while preserving quality ?
16 décembre 2020, par prisonmike11I'm new to ffmpeg,


I'm trimming a small clip from a bluray H264 video by providing start and end duration.


I tried :


ffmpeg -ss 00:01:00 -i input.mp4 -to 00:02:00 -c copy output.mp4



but this results in stuttering issues in start of the video. The audio and video also don't match.


I tried using
-c libx264
but this is taking too long and the output video has much lower bit rate.

My goal is to trim as fast as possible while preserving quality. I don't care about the frame accuracy of the trim. I plan on uploading the output to youtube.


what flags should I use ?


-
how to trim video in h264 format using ffmpeg while preserving quality ?
16 décembre 2020, par prisonmike11I'm new to ffmpeg,


I'm trimming a small clip from a bluray H264 video by providing start and end duration.


I tried :


ffmpeg -ss 00:01:00 -i input.mp4 -to 00:02:00 -c copy output.mp4



but this results in stuttering issues in start of the video. The audio and video also don't match.


I tried using
-c libx264
but this is taking too long and the output video has much lower bit rate.

My goal is to trim as fast as possible while preserving quality. I don't care about the frame accuracy of the trim. I plan on uploading the output to youtube.


what flags should I use ?


-
ffmpeg generated video with silent audio has different stream lengths
18 septembre 2015, par JennHarperI am trying to generate a video clip of a single image and add a silent audio track for concatenating with other video files.
I can successfully create the mp4 video with the desired image and audio track BUT, according to mediaInfo, the length of the video stream and the length of the audio stream are different. They are off by up to 60 ms. As I plan to concatenate several of these image clips and other video clips, I don’t want the error to accumulate. Any thoughts or suggestions for maintaining perfect video/audio sync ?Here are the ffmpeg commands that I am using :
C :\FFmpeg\bin\ffmpeg.exe -loop 1 -i myImage.jpg -codec:v libx264 -t 7 -profile:v high -preset slow -r 25 -b:v 500k -maxrate 500k -vf scale=1280:720 -y videoStreamOnly.mp4
C :\FFmpeg\bin\ffmpeg.exe -f lavfi -i anullsrc=r=48000 -i videoStreamOnly.mp4 -shortest -c:v copy -c:a aac -strict experimental -y videoWithSilentAudioStream.mp4