
Recherche avancée
Autres articles (66)
-
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
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 (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (7571)
-
avcodec/allcodecs : Dont play with NULLs
21 mars 2022, par Michael Niedermayeravcodec/allcodecs : Dont play with NULLs
Fixes : member access within null pointer of type 'const FFCodec' (aka 'const struct FFCodec')
Fixes : 45726/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-6554445419249664Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Reviewed-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
Fail to play videos using ffplay in concat protocol
13 janvier 2017, par Jian GuoI was trying to play multiple videos online using ffplay with
concat
protocol. According to the Documentation I tried this command in my terminal :ffplay -safe 0 -protocol_whitelist file,http,https,tcp,tls,concat concat:http://devimages.apple.com.edgekey.net/streaming/examples/bipbop_4x3/gear1/prog_index.m3u8\|http://devimages.apple.com.edgekey.net/streaming/examples/bipbop_4x3/gear2/prog_index.m3u8
But it fails to play those two videos :
Error when loading first segment 'concat:http://devimages.apple.com.edgekey.net/streaming/examples/bipbop_4x3/gear1/prog_index.m3u8|http://devimages.apple.com.edgekey.net/streaming/examples/bipbop_4x3/gear2/fileSequence0.ts'
concat:http://devimages.apple.com.edgekey.net/streaming/examples/bipbop_4x3/gear1/prog_index.m3u8|http://devimages.apple.com.edgekey.net/streaming/examples/bipbop_4x3/gear2/prog_index.m3u8: Invalid data found when processing inputI searched the error for a while but found nothing helps. Any ideas ?
-
Discord Bot Audio wont play
13 décembre 2016, par DomIm trying to get a dicord bot to play a simple mp3 saved locally.
Ive followed
https://github.com/Chikachi/DiscordIntegration/wiki/How-to-get-a-token-and-channel-ID-for-Discord
On how to authenticate my bot and used
https://izy521.gitbooks.io/discord-io/content/Methods/Handling_audio.html
for the code to follow. My bot joins the voice channel but will not play the mp3 file. I know it finds the file and have downloaded and pathed ffmpeg, but have no idea what else may be causing the issue. Any help with be appreciatedvar Discord = require('discord.io');
var Lame = require('lame');
var fs = require('fs');
var spawn = require('child_process').spawn;
var bot = new Discord.Client({
autorun: true,
token: "#"
});
var voiceChannelID = "#",
file = "Nonsense.mp3";
bot.on('ready', function() {
console.log(bot.username + " - (" + bot.id + ")");
bot.joinVoiceChannel(voiceChannelID, function(error, events) {
//Check to see if any errors happen while joining.
if (error) return console.error(error);
//Then get the audio context
bot.getAudioContext(voiceChannelID, function(error, stream) {
//Once again, check to see if any errors exist
if (error) return console.error(error);
//Create a stream to your file and pipe it to the stream
//Without {end: false}, it would close up the stream, so make sure to include that.
fs.createReadStream(file).pipe(stream, {end: false});
console.log(stream);
//The stream fires `done` when it's got nothing else to send to Discord.
stream.on('done', function() {
//Handle
});
});
});
});