
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (67)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (7411)
-
FFmpeg - inverting one of two audio files and merging them
3 février 2023, par kubinka0505I want to merge two files with FFmpeg, but one with inverted phase.


I've used following command, but It doesn't work.


ffmpeg -i "Song.wav" -i "Vocals.wav" -filter_complex "[0:a][1:a]amerge=inputs=2,pan=stereo|c0=c0|c1=-c1[a]" -map [a] "Instrumental.wav"


[Parsed_pan_1 @ 04c69000] Expected in channel name, got "-c1"
[AVFilterGraph @ 04b9bd80] Error initializing filter 'pan' with args 'stereo|c0=c0|c1=-c1'
Error initializing complex filters.
Invalid argument



I've also tried multiple variants of
c0code>, etc.


What command should I use ? Or maybe there's an easier workaround ?


-
FFMPEG get ID3v2 tag size
5 février 2016, par RiverchimpIn ffmpeg is there a way to get the size of an ID3v2 tag ? When I open the song file with
avformat_open_input
ffmpeg prints out these logs.V/FFMPEG: Probing mp3 score:12 size:2048
V/FFMPEG: Format mp3 probed with size=2048 and score=50
V/FFMPEG: id3v2 ver:3 flags:00 len:1075646
V/FFMPEG: Skipping 0 bytes of junk at 1075656.I could parse these logs to get the size but I would prefer a more robust solution.
-
avfilter/vf_gblur : add x86 SIMD optimizations
15 mai 2019, par Ruiling Songavfilter/vf_gblur : add x86 SIMD optimizations
The horizontal pass get 2x performance with the patch
under single thread.Tested overall performance using the command(avx2 enabled) :
./ffmpeg -i 1080p.mp4 -vf gblur -f null /dev/null
./ffmpeg -i 1080p.mp4 -vf gblur=threads=1 -f null /dev/null
For single thread, the fps improves from 43 to 60, about 40%.
For multi-thread, the fps improves from 110 to 130, about 20%.Signed-off-by : Ruiling Song <ruiling.song@intel.com>