
Recherche avancée
Médias (2)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (69)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)
Sur d’autres sites (7871)
-
How do I make this Novocaine-inspired render callback give one channel at a time ?
16 janvier 2014, par awfulcodeI'm using Kolyvan's awesome kxmovie as a base for my app, and it seems he got the render callback structure from Novocaine. I'm trying to change it so I get a specific channel at a time for each bus in a Multichannel mixer. I'm having trouble figuring out how to go about the FFT part of it (assuming I don't have to change the outputblock for this to work). Here's the relevant part of the code from his KxAudioManager.m method :
for (int iBuffer=0; iBuffer < ioData->mNumberBuffers; ++iBuffer) {
memset(ioData->mBuffers[iBuffer].mData, 0, ioData->mBuffers[iBuffer].mDataByteSize);
}
if (_playing && _outputBlock ) {
// Collect data to render from the callbacks
_outputBlock(_outData, numFrames, _numOutputChannels);
// Put the rendered data into the output buffer
if (_numBytesPerSample == 4) // then we've already got floats
{
float zero = 0.0;
for (int iBuffer=0; iBuffer < ioData->mNumberBuffers; ++iBuffer) {
int thisNumChannels = ioData->mBuffers[iBuffer].mNumberChannels;
for (int iChannel = 0; iChannel < thisNumChannels; ++iChannel) {
vDSP_vsadd(_outData+iChannel, _numOutputChannels, &zero, (float *)ioData->mBuffers[iBuffer].mData, thisNumChannels, numFrames);
}
}
}...If I understand correctly, in order to have it render only one channel I would pass the requesting bus number to the render callback and make it something like this :
for (int iBuffer=0; iBuffer < ioData->mNumberBuffers; ++iBuffer) {
int thisNumChannels = ioData->mBuffers[iBuffer].mNumberChannels;
int iChannel = inBusNumber;
vDSP_vsadd(_outData+iChannel, _numOutputChannels, &zero, (float *)ioData->mBuffers[iChannel].mData, thisNumChannels, numFrames);Am I doing this right ? I definitely broke it while adding the Multichannel Mixer and I'm thinking it's because of this FFT, just not sure since I know very little when it comes to signal processing.
As always, thank you so much for your help.
-
How to add a text containing the dynamic current time of the video into video,when finished catching each frame using ffmpeg ?
12 septembre 2016, par breakHeartHow to solve it ? I hope to solve it by using a function, no command. I hope someone can help me ?
-
HLS streaming get current ts time from m3u8 file ?
13 septembre 2016, par ywj7931I wonder if it is possible to get a ts file’s time by reading the m3u8 file ?
Like this :#EXTM3U
#EXT-X-VERSION:3
#EXT-X-MEDIA-SEQUENCE:936
#EXT-X-TARGETDURATION:4
#EXTINF:3.911,
1057677964350941__BshzQkvI-MOpxaKgPtCTcw__-936.ts
#EXTINF:3.409,
1057677964350941__BshzQkvI-MOpxaKgPtCTcw__-937.ts
#EXTINF:4.045,
1057677964350941__BshzQkvI-MOpxaKgPtCTcw__-938.ts
#EXTINF:3.710,
1057677964350941__BshzQkvI-MOpxaKgPtCTcw__-939.ts
#EXTINF:3.577,
1057677964350941__BshzQkvI-MOpxaKgPtCTcw__-940.ts