
Recherche avancée
Médias (1)
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (100)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)
Sur d’autres sites (10539)
-
I have pip installed pydub but still didn't work
1er mai 2023, par Dom807After I had pip installed pydub and SpeechRecognition, I still can't make the program run successfully although I extracted the files from ffmpeg and specified the folder name bin in the corresponding directory. I tried to find solutions to solve the problem but it sill didn't work after I followed the steps clearly from the web. May I ask what is the good way to read .wav files using pydub AudioSegment ?


Warning (from warnings module):
 File "C:\Python38\lib\site-packages\pydub\utils.py", line 171
 warn("Couldn't find ffmpeg or avconv - defaulting to ffmpeg, but may not work", RuntimeWarning)
 RuntimeWarning: Couldn't find ffmpeg or avconv - defaulting to ffmpeg, but may not work



-
FFmpeg - concat videos error, do not match the corresponding output link ?
18 février 2021, par wensefuI'm trying to concat some video into one single video using ffmpeg.



input information :



a.mp4 1920x808 , b.mkv 1280x720



First I tried command below and it works fine :





ffmpeg -i a.mp4 -i b.mkv -f lavfi -t 0.1 -i anullsrc -filter_complex [1:v]scale=1920:808:force_original_aspect_ratio=decrease,pad=1920:808 :(ow-iw)/2 :(oh-ih)/2[v1] ; [0:v][0:a][v1][1:a]concat=n=2:v=1:a=1[outv][outa] -map [outv] -map [outa] -vcodec libx264 -crf 27 -preset ultrafast -threads 2 out.mp4





And then I put 'b.mkv' first :





ffmpeg -i b.mkv -i a.mp4 -f lavfi -t 0.1 -i anullsrc -filter_complex [0:v]scale=1920:808:force_original_aspect_ratio=decrease,pad=1920:808 :(ow-iw)/2 :(oh-ih)/2[v0] ; [v0][0:a][1:v][1:a]concat=n=2:v=1:a=1[outv][outa] -map [outv] -map [outa] -vcodec libx264 -crf 27 -preset ultrafast -threads 2 out.mp4





but this time I got error :





Input link in1:v0 parameters (size 1920x808, SAR 0:1) do not match the corresponding output link in0:v0 parameters (1920x808, SAR 3232:3231)





I don't understand why ?



Any ideas anyone ?



Many thanks in advance.


-
Specifying correct library to link in Xcode when multiple copies exist on search path
23 avril 2015, par RobotbugsI am trying to compile a C++ file that depends on ffmpeg. I have spent a long time trying to fix all the link errors. I found that on the Mac it needs :
libbz2.dylib
libiconv.dylib
libz.dylib
libavcodec.a
libavformat.a
libswscale.a
libswresample.a
VideoDecodeAcceleration.framework
CodeVideo.framework
CoreFoundation.frameworkThe problem I have is that I still get symbol link errors for
libiconv
even though the library is present in/usr/lib
and all the other libraries in this directory are being found there. The compile line includes-liconv.2
On searching around I found that the problem comes from there being two version of
libiconv
on my system. One is in/usr/lib
and the other is in/opt/local/lib
. The one in/usr/lib
exports symbols that ffmpeg uses named like "_iconv_open
", whereas the one in/opt/local/lib
exports the same symbols with "lib
" added, e.g. "_libiconv_open
". It seems the compiler is picking up the/opt/local/lib
library.How can I get Xcode to pick up the correct lib ?