
Recherche avancée
Autres articles (67)
-
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...) -
MediaSPIP en mode privé (Intranet)
17 septembre 2013, parÀ partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)
Sur d’autres sites (4950)
-
How to convert a .m4a file to a .wav file on Android using React Native ?
23 octobre 2022, par aurelien_morelI am trying to convert a .m4a file that I record using expo-audio into a .wav file. The goal is then to use it as a blob to send it on a Google Cloud Storage.
I tried to do this using ffmpeg-kit-react-native :


const uri = recording.getURI();
console.log(uri);

if (Platform.OS === 'android') {
 FFmpegKit.execute(`-i ${uri} temp.wav`).then(async (session) => {
 // const returnCode = await session.getReturnCode();
 uri = 'temp.wav';
 });
}

const response = await fetch(uri);
const blob = await response.blob();



but I have no sucess (getting the error) :


TypeError : null is not an object (evaluating 'FFmpegKitReactNativeModule.ffmpegSession')


uri have this form :


file :///data/user/0/host.exp.exponent/cache/ExperienceData/%2540aamorel%252Fvoki/Audio/recording-4038abed-f264-48ca-a0cc-861268190874.m4a


I am not sure if I use the FFmpeg toolkit correctly. Do you know how to make this work ? Or is there a simpler way to do it ?


-
How to include vtt file in m3u8 file [closed]
20 octobre 2020, par NowehI'm trying to include a .VTT file in an already generated m3u8 file.


the translation file is uploaded separately on the server.


I am therefore trying to merge everything live after the upload.


I tried some commands with ffmpeg without success.


My files :


- 

- subtitles.vtt
- out.m3u8
- v0/
- v0_index.m3u8
- ...












out.m3u8 contains :


#EXTM3U
#EXT-X-VERSION:3
#EXT-X-STREAM-INF:BANDWIDTH=655600,RESOLUTION=640x360,CODECS="avc1.4d401e,mp4a.40.2"
v0_index.m3u8

#EXT-X-STREAM-INF:BANDWIDTH=1449112,RESOLUTION=842x480,CODECS="avc1.4d401e,mp4a.40.2"
v1_index.m3u8

...



could you help me to merge those files ?


Thanks.


-
Problem in the audio file created by converting the wav audio file to amr-wb using ffmpeg
31 juillet 2019, par starlordI want to compress the wav audio file for which I am converting it into amr-wb file (not using simple amr because I need better quality audio files).
For a few audio files there is some noise after conversion (wav file to amr-wb file with 16k Hz sampling rate and 12.65kbits/s bit rate) due to which android music player is crashing while playing these files.
But if I convert these audio files with sampling rate of 16k Hz and 19.85kbits/s then the audio file is playing on android but increasing the file size by 30-40%.
What is the reason of this behavior and how to create compressed amr audio file with maximum quality ?
The command used to create the amr file :
ffmpeg -i "0.wav" -acodec libvo_amrwbenc -ar 16000 -ab 12.65k "0.amr"
Also is there a tool to check the validity of headers of amr audio file ?