
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (79)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
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. -
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 (...)
Sur d’autres sites (5802)
-
Convert WAV to AIFF with ffmpeg
15 février 2021, par AreteHow can I convert a wav file to an AIF file with ffmpeg ?



I need to make various files one in 16 Bit, one in 24 bit and one in 32 Bit.



I also need to make different sample rates. E.g one in 176,400 kHz and one in 44,100 kHz.



I know
ffmpeg -i input-file.wav output-file.aif
will convert the file but I am not sure about the rest.


https://www.ffmpeg.org/general.html#Audio-Codecs says ffmpeg supports AIFF but there is no documentation on the AIFF encoding : https://en.wikipedia.org/wiki/Audio_Interchange_File_Format#AIFF-C_common_compression_types


-
Convert WAV to AIFF with ffmpeg
12 novembre 2016, par AreteHow can I convert a wav file to an AIF file with ffmpeg ?
I need to make various files one in 16 Bit, one in 24 bit and one in 32 Bit.
I also need to make different sample rates. E.g one in 176,400 kHz and one in 44,100 kHz.
I know
ffmpeg -i input-file.wav output-file.aif
will convert the file but I am not sure about the rest.https://www.ffmpeg.org/general.html#Audio-Codecs says ffmpeg supports AIFF but there is no documentation on the AIFF encoding : https://en.wikipedia.org/wiki/Audio_Interchange_File_Format#AIFF-C_common_compression_types
-
FFmpeg : building example C codes
23 février 2021, par J. S.I have configured and compiled the FFmpeg library using this link :
https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu



Now, I am trying to build example C codes provided by FFmpeg from here :
https://github.com/FFmpeg/FFmpeg/tree/master/doc/examples



However, when I run make install-examples or make install (suggested by /example/README), I receive this kind of message :





make : *** No rule to make target '/doc/examples/README', needed by
 'install-examples'. Stop.





I thought this may be due to the rules not being in the correct MakeFile format (I am not sure why they refers to README). How should I go about in fixing this and compiling the example codes ? I have tried to find solutions about this, but there doesn't seem to be much information online.



Thank you.