
Recherche avancée
Médias (1)
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (91)
-
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 (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
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 (9056)
-
Revision d7e8490d04 : Add optional mode_info printout function for debug purpose This commit adds an
26 juin 2014, par Jingning HanChanged Paths :
Modify /vp9/encoder/vp9_encodeframe.c
Modify /vp9/encoder/vp9_encoder.c
Add optional mode_info printout function for debug purposeThis commit adds an optional function to print out the mode_info
loaded from external file for debug purpose. It can be turned on
by setting PRINT_MODE_INFO_LOAD 1.Change-Id : I8612801cbf2eb38213105afb7434da2584b3ff2c
-
Building FFMPEG on Windows with MSYS-2.0 Mingw-64 always fails
27 septembre 2023, par machine_1I am trying to build the FFMPEG library on Windows 11 to incorporate it in my project for audio processing. Here are the steps I carried out :


- 

- Installed MSYS2
- Update MSYS2 :
pacman -Syu
followed bypacman -Su
- Install Required Packages :
pacman -S make pkg-config gcc yasm nasm git diffutils
- Clone FFmpeg Source Code :
git clone https://git.ffmpeg.org/ffmpeg.git ffmpeg
- Change directory to ffmpeg :
cd ffmpeg
- Ran the configure script :
./configure --prefix=/usr/local --disable-shared --enable-static
- Compile FFmpeg :
make
















I instantly got an error and compilation halted so I downloaded an earlier version of ffmpeg and something similar happened. I kept trying earlier versions with the last one being version 4.1.11 and here is the list of errors I got with this version :


/tmp/cc7SrMT5.s: Assembler messages:
/tmp/cc7SrMT5.s:356: Error: operand type mismatch for `shr'
/tmp/cc7SrMT5.s:421: Error: operand type mismatch for `shr'
/tmp/cc7SrMT5.s:479: Error: operand type mismatch for `shr'
/tmp/cc7SrMT5.s:640: Error: operand type mismatch for `shr'
/tmp/cc7SrMT5.s:707: Error: operand type mismatch for `shr'
/tmp/cc7SrMT5.s:774: Error: operand type mismatch for `shr'
/tmp/cc7SrMT5.s:870: Error: operand type mismatch for `shr'
/tmp/cc7SrMT5.s:957: Error: operand type mismatch for `shr'
/tmp/cc7SrMT5.s:1059: Error: operand type mismatch for `shr'
/tmp/cc7SrMT5.s:1216: Error: operand type mismatch for `shr'
/tmp/cc7SrMT5.s:1361: Error: operand type mismatch for `shr'
/tmp/cc7SrMT5.s:1453: Error: operand type mismatch for `shr'
/tmp/cc7SrMT5.s:1568: Error: operand type mismatch for `shr'
/tmp/cc7SrMT5.s:1728: Error: operand type mismatch for `shr'
/tmp/cc7SrMT5.s:2114: Error: operand type mismatch for `shr'
/tmp/cc7SrMT5.s:2265: Error: operand type mismatch for `shr'
/tmp/cc7SrMT5.s:2602: Error: operand type mismatch for `shr'
/tmp/cc7SrMT5.s:2720: Error: operand type mismatch for `shr'
/tmp/cc7SrMT5.s:2819: Error: operand type mismatch for `shr'
make: *** [ffbuild/common.mak:60: libavformat/adtsenc.o] Error 1



Why can't I get FFMPEG to work ? Does anyone have a fix for this or a solution ?


-
Convert video.ts file into video.mp4 using ffmpeg
11 juillet 2020, par HorizonBloomSo I tried to convert a file named
video.ts
intovideo.mp4
in Python and am getting the error :

FileNotFoundError: [WinError 2] The system cannot find the file specified


Assuming
video.ts
is already loaded into the program and subprocess already imported.

This is due to the line :


>>> subprocess.run(['ffmpeg', '-i', 'video.ts', 'video.mp4'])
but I don't know what's the problem.

I've opened the
video.ts
file and it seem to be working fine. Python version (3.8.2)