
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (77)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...)
Sur d’autres sites (10869)
-
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>
-
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.
-
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 ?