
Recherche avancée
Autres articles (96)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (9811)
-
how to use command line to stitch two wav together using ffmpeg in linux ?
10 octobre 2018, par spartaslaveI have installed ffmpeg on debian and I tried the two command lines.
There are two files under the same directory, they are first.wav and second.wav
The first method is to create a txt file, inside a.txt, they arefile 'first.wav'
file 'second.wav'I have run
ffmpeg -f concat -i a.txt -c copy final.wav
then I run it, it could work fine.
But I want to try another method,
which isffmpeg -i "concat:first.wav|second.wav" -c copy final2.wav
there is not error with the sdcond command line, but it only capture the first file and the length of final2.wav is almost same as first.wav. File second.wav is not stitched at all.
As I am using golang to execute the command line, I want to usecmd := exec.Command("ffmpeg",args)
to stitch the medias together, I can read all the media files into an array, but this API cannot work for the array, so I want to stitch the files together to
"concat:file1.wav|file2.wav|file3.wav|......"
in this case it could be easy to stitch the files together and I do not need to loop the cmd.
likecmd = exec.Command("ffmpeg","-i","concat:first.wav|second.wav|third.wav|......","-c","copy","final2.wav")
I do not want to create any extra files like a.txt file as I need to delete it later and this may also touch the permission.
So is there any possible solution for the second command line ? -
avfilter/vf_psnr : Prevent integer overflow.
21 septembre 2013, par Neil Birkbeckavfilter/vf_psnr : Prevent integer overflow.
The 32-bit integer accumulator in MSE computation can overflow for 8-bit frame data.
(e.g., for 1080p white frame compared to a black frame can give sum of 255*255*1080*1920 > 2^32).Signed-off-by : Neil Birkbeck <neil.birkbeck@gmail.com>
Signed-off-by : Michael Niedermayer <michaelni@gmx.at> -
avformat/utils : add missing brackets around arguments in av_realloc() call
22 novembre 2016, par James Almer