
Recherche avancée
Médias (16)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (58)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)
Sur d’autres sites (4881)
-
Convert pcm_s16le audio to mp3 (in php with ffmpeg/sox/...) ?
4 juin 2024, par LoïcI have a bin and a cue file (CD image) and I am making a website to be able to listen to my music. I managed to split the tracks and make a (44 bytes) wav header so my browser can read the audio but the wav files are too big to be read on an unstable connection (it's 1411kbps where an mp3 would be 320kbps or lower !).


At first, is there a way to convert the audio to mp3 without making a temporary file in php ? Maybe ffmpeg or sox could help ?


Secondly, I would like to be able to satisfy partial content requests (so I can skip without loading the whole file). I have already succeeded it for the wav files and I would need to know a few things to do it with mp3 :


- 

- How to make a mp3 header ?
- How to determine the file length ?
- How to convert pcm_s16le audio to mp3 without headers at a constant bit rate ?








I tried searching online but I did not find what I was hoping for. I hope you can help me.


-
Extract every audio and subtitles from a video with ffmpeg
4 octobre 2015, par WhatWhereWhenI have multiple audio tracks and subtitles to extract in a single .mkv file. I’m new to
ffmpeg
commands, this is what I’ve tried (audio) :ffmpeg -i VIDEO.mkv -vn -acodec copy AUDIO.aac
It just extract 1 audio. What I want is tell
ffmpeg
to extract every single audio files and subtitle files to a destination, and keep the original name of each files and extensions. (Because I don’t know which extension does the audio files are, sometimes maybe .flac or .aac).I’m not sure about the solutions I’d found online, because it’s quite complicated, and I need explanations to know how it’s works, so that I can manipulate the command in the future. By the way, I planned to run the code from Windows CMD.
Thanks.
-
Extract every audio and subtitles from a video with ffmpeg
14 juillet 2021, par WhatWhereWhenI have multiple audio tracks and subtitles to extract in a single .mkv file. I'm new to
ffmpeg
commands, this is what I've tried (audio) :


ffmpeg -i VIDEO.mkv -vn -acodec copy AUDIO.aac



It just extract 1 audio. What I want is tell
ffmpeg
to extract every single audio files and subtitle files to a destination, and keep the original name of each files and extensions. (Because I don't know which extension does the audio files are, sometimes maybe .flac or .aac).
I'm not sure about the solutions I'd found online, because it's quite complicated, and I need explanations to know how it's works, so that I can manipulate the command in the future. By the way, I planned to run the code from Windows CMD.
Thanks.