
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (43)
-
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
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 (8331)
-
checkasm/arm : preserve the stack alignment checkasm_checked_call
12 juillet 2016, par Janne Grunaucheckasm/arm : preserve the stack alignment checkasm_checked_call
The stack used by checkasm_checked_call_vfp was a multiple of 4 when the
checked function is called. AAPCS requires a double word (8 byte)
aligned stack public interfaces. Since both calls are public interfaces
the stack is misaligned when the checked is called.Might fix the SIGBUS error in the armv7-linux-clang-3.7 fate config.
-
Extracting audio from video using fluent-ffmpeg
12 mars, par Idi FavourIm trying to extract the audio from a video, an error is occuring
Error converting file : Error : ffmpeg exited with code 234 : Error opening output file ./src/videos/output-audio.mp3.
Error opening output files : Invalid argument


I use this same directory for my video compression that runs before this one and it works.


ffmpeg()
 .input(url)
 .audioChannels(0)
 .format("mp3")
 .output("./src/videos/output-audio.mp3")
 .on("error", (err) => console.error(`Error converting file: ${err}`))
 .on("end", async () => {
 console.log("audio transcripts");
 
 const stream = fs.createReadStream("./src/videos/output-audio.mp3");
 const transcription = await openai.audio.transcriptions.create({
 file: stream,
 model: "whisper-1",
 response_format: "verbose_json",
 timestamp_granularities: ["word"],
 });
 transcripts = transcription.text;
 console.log(transcription.text);
 })
 .run();



-
I want FFMPEG generate the m3u8 file with the oldest segments instead of the newest
4 juin 2021, par SandiI have an FFmpeg command like this :


ffmpeg -i test.mp4 -f hls -hls_time 2 -hls_wrap 10 -hls_list_size 5 test.m3u8



Afaik, hls_wrap is the number of segments we want to store locally and hls_list_size is the segment listed in the m3u8 output file. The command above will generate 10 files of the video segment.


[seg 0][seg 1][seg 2][seg 3][seg 4][seg 5][seg 6][seg 7][seg 8][seg 9]



And inside the test.m3u8, of course, there are 5 newest segments listed.


[seg 5][seg 6][seg 7][seg 8][seg 9]



I want the test.m3u8 lists the oldest available segment instead of the newest. So it should contain :


[seg 0][seg 1][seg 2][seg 3][seg 4]



In another word, I want to preload the segments before it listed in test.m3u8.


The idea is I want to rsync the output of that FFmpeg command to a different folder on the network. I want to avoid test.m3u8 contains a segment that not completely copied because of the large segment size.


Please help me and pardon my English. Thank you very much !