
Recherche avancée
Médias (2)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (48)
-
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 (...) -
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 (...) -
Utilisation et configuration du script
19 janvier 2011, parInformations spécifiques à la distribution Debian
Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
Récupération du script
Le script d’installation peut être récupéré de deux manières différentes.
Via svn en utilisant la commande pour récupérer le code source à jour :
svn co (...)
Sur d’autres sites (4928)
-
How do i properly setup ffmpeg and fix this "Permission Denied" error im getting ?
8 décembre 2020, par ExaNoriError im getting

C:/Users/Motzumoto/Desktop/AGB/ffmpeg/bin: Permission denied


I already have ffmpeg installed to path on my windows 10 machine, but that didnt fix it, so i just tried to put ffmpeg in my bots directory, that didnt do it either.
Heres my music code if anyone can help
It uses a mixture of youtube-dl and ffmpeg
If there are also any errors that would stop this from working at all it'd be nice if you could show me them, im quite tired of this as of now and im honestly just about to scrap this idea and forget about it


I've tried linking the path to the ffmpeg.exe, that still didnt work, i got the same error, i have no idea what to do


import asyncio
import logging
import math
from urllib import request

import discord
from discord.ext import commands
import youtube_dl
from utils.guilds import Guilds
import ffmpeg
from asyncio import run_coroutine_threadsafe as coroutine

DOWNLOAD_PATH = "audio" # download path of the file
STREAM_INDICATOR_PREFIX = "${STREAM}:"




# options
ytdl_options = {
 "quiet": True,
 "forceipv4": True,
 "noplaylist": True,
 "no_warnings": True,
 "ignoreerrors": True,
 "nooverwrites": True,
 "restrictfilenames": True,
 "nocheckcertificate": True,
 "default_search": "auto",
 "format": "bestaudio/best",
}
ffmpeg_options = {
 "options": "-vn" # indicates that we have disabled video recording in the output file
}

ytdl = youtube_dl.YoutubeDL(ytdl_options) # youtube_dl object

# checks functions
def is_connected(ctx):
 """Check if the bot is connected to a voice channel."""
 
 if ctx.voice_client:
 return True
 
 return False
def is_same_channel(ctx):
 """Check if the bot and the user is in the same channel."""
 
 # try to get their voice channel id if there's any
 try:
 bot_channel_id = ctx.voice_client.channel.id
 user_channel_id = ctx.author.voice.channel.id
 # if one of them is not connected to a voice channel then they're not together
 except AttributeError:
 return False
 
 # check if their voice channel id is the same
 if bot_channel_id == user_channel_id:
 return True
 
 return False
async def checks(ctx):
 """Do some checking."""
 
 # check if the user and the bot is in the same channel
 if not is_same_channel(ctx):
 await ctx.send("I am not with you. How dare you to command me like that.")
 return False
 
 return True

# other function
async def create_source(ctx, query):
 """Creates youtube_dl audio source for discord.py voice client."""
 
 try:
 async with ctx.typing(): # shows that the bot is typing in chat while searching for an audio source
 source = await YTDLSource.from_url(query, ctx.bot.loop) # creates a youtube_dl source
 except IndexError: # if found nothing
 await ctx.send("I found nothing with the given query..")
 return None
 
 return source

class Music(commands.Cog, name="music"):
 def __init__(self, bot):
 self.bot = bot
 self.guilds = Guilds() # collection of some guilds that this bot is currently in
 
 async def cog_command_error(self, ctx, error):
 """Catch all errors of this cog."""
 
 # a check on a command has failed
 if isinstance(error, commands.CheckFailure):
 await ctx.send("I'm not connected to any voice channel.")
 # ignore this error because it is already handled at the command itself
 elif isinstance(error, commands.errors.BadArgument):
 pass
 # otherwise, log all the other errors
 else:
 music_logger.exception(error)
 await ctx.send(error)
 
 @commands.command()
 async def join(self, ctx):
 """Invite me to your voice channel."""
 
 try:
 async with ctx.typing(): # shows that the bot is typing in chat while joining the voice channel
 await ctx.author.voice.channel.connect()
 await ctx.send("Alright, I joined your voice channel.")
 # user is not yet connected to a voice channel
 except AttributeError:
 await ctx.send(f"You must be connected to a voice channel first {ctx.author.name}.")
 # bot is already connected to a voice channel
 except discord.ClientException:
 if is_same_channel(ctx):
 await ctx.send("I'm already with you.")
 else:
 await ctx.send("I'm already with somebody else.")
 
 @commands.command()
 @commands.check(is_connected)
 async def leave(self, ctx):
 """Kick me out of your voice channel."""
 
 # do some checking before executing this command
 if not await checks(ctx):
 return
 
 # reset some bot's states
 self.guilds(ctx).has_played_voice = False # reset 'has_played_voice' state
 self.guilds(ctx).queue.clear() # reset the queue
 
 # finally, stop and disconnect the bot
 ctx.voice_client.stop() # stop the bot's voice
 await ctx.voice_client.disconnect() # disconnect the bot from voice channel
 await ctx.send("Ah, alright, cya.")
 
 async def play_source(self, ctx, vc, source):
 """Play an audio to a voice channel."""
 
 def play_next(error):
 """Executes when the voice client is done playing."""
 
 # log the errors if there is any
 if error:
 music_logger.exception(error)
 coroutine(ctx.send(error), self.bot.loop)
 
 # ensure that there is a song in queue
 if self.guilds(ctx).queue.queue:
 coroutine(ctx.invoke(self.bot.get_command("next")), self.bot.loop) # go to the next song
 
 vc.play(source, after=play_next) # play the voice to the voice channel
 await ctx.send(f"Now playing '{source.title}'.")
 
 @commands.command(aliases=("p", "stream"))
 async def play(self, ctx, *, query=""):
 """Play a song for you."""
 
 # check if the query argument is empty
 if not query:
 # if yes, cancel this command
 await ctx.send("What should I play?")
 return
 
 # check if this command is invoked using 'stream' alias
 if ctx.invoked_with == "stream":
 SIP = STREAM_INDICATOR_PREFIX # put prefix to the title of the source that indicates that it must be streamed
 else:
 SIP = ""
 
 # ensure that the bot is connected a voice channel
 try:
 # connect the bot to the user voice channel
 await ctx.author.voice.channel.connect()
 except AttributeError:
 # user is not yet connected to a voice channel
 await ctx.send(f"You must be connected to a voice channel first {ctx.author.name}.")
 return
 except discord.ClientException:
 pass # just ignore if bot is already connected to the voice channel
 
 # do some other checking before executing this command
 if not await checks(ctx):
 return
 
 # create the audio source
 source = await create_source(ctx, SIP + query)
 
 # ensure that there is actually a source
 if source:
 # initialize bot's states if the the queue is still empty
 if not self.guilds(ctx).queue.queue:
 self.guilds(ctx).has_played_voice = True # this means that the bot has played in the voice at least once
 self.guilds(ctx).queue.enqueue(SIP + source.title)
 
 # play the audio
 try:
 await self.play_source(ctx, ctx.voice_client, source)
 # enqueue the source if audio is already playing
 except discord.ClientException:
 self.guilds(ctx).queue.enqueue(SIP + source.title)
 await ctx.send(f"'{source.title}' is added to the queue.")
 
 @commands.command()
 @commands.check(is_connected)
 async def volume(self, ctx, *, vol=None):
 """Adjust my voice volume."""
 
 # do some checking before executing this command
 if not await checks(ctx):
 return
 
 vc = ctx.voice_client # get the voice client
 
 # ensure that the bot is playing voice in order to change the volume
 if not self.guilds(ctx).has_played_voice:
 await ctx.send("I haven't even started yet.")
 return
 elif vc.source is None:
 await ctx.send("I am not playing anything.")
 return
 
 # check if user has passed an argument
 if vol is None:
 await ctx.send("I expect an argument from 0 to 100.")
 return
 
 # cast string argument 'vol' into a float
 try:
 vol = float(vol)
 # except if the argument is not a number
 except ValueError:
 await ctx.send("The argument must only be a number.")
 return
 
 # set the volume
 if vol >= 0 and vol <= 100: # bound the volume from 0 to 100
 vc.source.volume = vol / 100
 else:
 await ctx.send("I expect a value from 0 to 100.")
 
 @commands.command()
 @commands.check(is_connected)
 async def pause(self, ctx):
 """Pause the song."""
 
 # do some checking before executing this command
 if not await checks(ctx):
 return
 
 vc = ctx.voice_client # get the voice client
 
 # ensure that the bot's voice is playing in order to pause
 if vc.is_playing():
 vc.pause()
 await ctx.send("Alright, paused.")
 # the bot haven't played yet
 elif not self.guilds(ctx).has_played_voice:
 await ctx.send("I haven't even started yet.")
 # there is no song in queue
 elif not self.guilds(ctx).queue.queue:
 await ctx.send("I am not playing anything.")
 else:
 await ctx.send("I already paused.")
 
 @commands.command()
 @commands.check(is_connected)
 async def resume(self, ctx):
 """Resume the song."""
 
 # do some checking before executing this command
 if not await checks(ctx):
 return
 
 vc = ctx.voice_client # get the voice client
 
 # ensure that the bot's voice is paused in order to resume
 if vc.is_paused():
 vc.resume()
 await ctx.send("Alright, song resumed")
 # the bot haven't played yet
 elif not self.guilds(ctx).has_played_voice:
 await ctx.send("I haven't even started yet.")
 # there is no song in queue
 elif not self.guilds(ctx).queue.queue:
 await ctx.send("I am not playing anything.")
 else:
 await ctx.send("I am not paused.")
 
 async def update_song(self, ctx):
 """Change the currently playing song."""
 
 vc = ctx.voice_client # get the voice client
 current = self.guilds(ctx).queue.current # get the current song in queue if there's any
 
 # ensure that the queue is not empty
 if current:
 source = await create_source(ctx, current) # create the audio source
 # the bot haven't played yet
 elif not self.guilds(ctx).has_played_voice:
 await ctx.send("I haven't even started yet.")
 return
 else:
 vc.stop() # stop the voice just to be sure
 await ctx.send("No more songs unfortunately.")
 return
 
 # if voice client is already playing, just change the source
 if vc.is_playing():
 vc.source = source
 await ctx.send(f"Now playing '{source.title}'.")
 # otherwise, play the source
 else:
 await self.play_source(ctx, vc, source)
 
 @commands.command()
 @commands.check(is_connected)
 async def next(self, ctx):
 """Skip the current song."""
 
 # do some checking before executing this command
 if not await checks(ctx):
 return
 
 self.guilds(ctx).queue.shift(1) # shift the queue to the left
 await self.update_song(ctx) # change the current song
 
 @commands.command()
 @commands.check(is_connected)
 async def prev(self, ctx):
 """Go back to the previous song."""
 
 # do some checking before executing this command
 if not await checks(ctx):
 return
 
 self.guilds(ctx).queue.shift(-1) # shift the queue to the right
 await self.update_song(ctx) # change the current song
 
 @commands.command()
 @commands.check(is_connected)
 async def removesong(self, ctx, *, index=1):
 """Remove a song in the queue."""
 
 # do some checking before executing this command
 if not await checks(ctx):
 return
 
 index -= 1 # decrement the 'index' to match the zero-based index of Python
 
 # if index is equal to 0, that means remove the currently playing song
 # do some extra stuff before removing the current song
 if index == 0:
 # try to remove a song in queue
 try:
 self.guilds(ctx).queue.dequeue() # dequeue a song in the queue
 self.guilds(ctx).queue.shift(-1) # shift the queue to the right so that the next song will be played instead of the next next song
 await ctx.invoke(self.bot.get_command("next")) # finally, play the next song
 # except when the queue is empty
 except IndexError:
 await ctx.send("I haven't even started yet.")
 # otherwise, just remove a song in queue
 else:
 # try to remove the song in queue
 try:
 self.guilds(ctx).queue.pop(index)
 await ctx.send("Song removed")
 # except if the song is not in the queue
 except IndexError:
 # check if the bot has not started playing yet
 if not self.guilds(ctx).has_played_voice:
 await ctx.send("I haven't even started yet...")
 else:
 await ctx.send(f"I can't remove that {ctx.author.name} because it doesn't exist.")
 @removesong.error
 async def remove_error(self, ctx, error):
 """Error handler for the 'remove' command."""
 
 # check if the argument is bad
 if isinstance(error, commands.errors.BadArgument):
 await ctx.send(f"I can't remove that {ctx.author.name}.")
 await ctx.send("The argument must only be a number or leave it none.")
 
 @commands.command()
 @commands.check(is_connected)
 async def stop(self, ctx):
 """Stop all the songs."""
 
 # do some checking before executing this command
 if not await checks(ctx):
 return
 
 vc = ctx.voice_client # get the voice client
 
 # ensure that the bot is connected to the voice client
 if vc.is_playing() or vc.is_paused():
 self.guilds(ctx).queue.clear() # reset the queue
 ctx.voice_client.stop() # stop the bot's voice
 await ctx.send("Playback stopped")
 # the bot haven't played yet
 elif not self.guilds(ctx).has_played_voice:
 await ctx.send("I haven't even started yet.")
 else:
 await ctx.send("I already stopped.")
 
 @commands.command()
 @commands.check(is_connected)
 async def queue(self, ctx):
 """Show the queue of songs."""
 
 SIP = STREAM_INDICATOR_PREFIX # shorten the variable name
 
 # do some checking before executing this command
 if not await checks(ctx):
 return
 
 # try to send the songs in the queue
 try:
 # format the queue to make it readable
 queue = [
 f"{i}." + (" (STREAM) " if q.startswith(SIP) else " ") + q.split(SIP)[-1]
 for i, q in enumerate(self.guilds(ctx).queue.queue, 1)
 ]
 
 await ctx.send("\n".join(queue))
 # except if it is empty
 except HTTPException:
 await ctx.send("No songs in queue.")

class YTDLSource(discord.PCMVolumeTransformer):
 """Creates a youtube_dl audio source with volume control."""
 
 def __init__(self, source, *, data, volume=1):
 super().__init__(source, volume)
 self.data = data
 self.title = data.get("title")
 self.url = data.get("url")
 
 @classmethod
 async def from_url(cls, url, loop):
 """Get source by URL."""
 
 # check if the URL is must be streamed
 if url.startswith(STREAM_INDICATOR_PREFIX):
 stream = True
 else:
 stream = False
 
 # get data from the given URL
 data = await loop.run_in_executor(
 None,
 (lambda:
 ytdl.extract_info(
 url.split(STREAM_INDICATOR_PREFIX)[-1], # remove the prefix from the URL
 download=not stream
 ))
 )
 ##$$$$ fix error somtimes
 # take the first item from the entries if there's any
 if "entries" in data:
 try:
 data = data["entries"][0]
 except Exception as e:
 music_logger.exception(e)
 return None
 
 filepath = data["url"] if stream else ytdl.prepare_filename(data) # source url or download path of the file, depends on the 'stream' parameter
 return cls(discord.FFmpegPCMAudio("C:/Users/Motzumoto/Desktop/AGB/ffmpeg/bin", **ffmpeg_options), data=data) # create and return the source

def setup(bot):
 bot.add_cog(Music(bot))




-
FFmpeg : Encoder did not produce proper pts, making some up
22 novembre 2022, par ChrolumaI'm trying to convert a yuv image to jpg format via FFmpeg. But I occured
[image2 @ 0x38750] Encoder did not produce proper pts, making some up.
while the program was encoding. I looked up some references that someone saidavcodec_send_frame
can only be used when the frames is more than one. Can I use this way to achieve image conversion ? Here is my code :

int ff_yuv422P_to_jpeg(int imgWidth, int imgHeight, uint8_t* yuvData, int yuvLength)
{
 /* ===== define ===== */
 const char* OutputFileName = "img.jpg";
 int retval = 0;

 /* ===== context ===== */
 struct AVFormatContext* pFormatCtx = avformat_alloc_context();
 avformat_alloc_output_context2(&pFormatCtx, NULL, NULL, OutputFileName);
 struct AVOutputFormat* fmt = pFormatCtx->oformat;

 struct AVStream* video_st = avformat_new_stream(pFormatCtx, 0);
 if (!video_st)
 {
 retval = 1;
 perror("ff_yuv422_to_jpeg(): avformat_new_stream");
 goto out_close_ctx;
 }

 /* ===== codec ===== */
 struct AVCodecContext* pCodecCtx = avcodec_alloc_context3(NULL);
 if (avcodec_parameters_to_context(pCodecCtx, video_st->codecpar) < 0)
 {
 retval = 2;
 perror("ff_yuv422_to_jpeg(): avcodec_parameters_to_context");
 goto out_close_ctx;
 }

 pCodecCtx->codec_id = fmt->video_codec;
 pCodecCtx->codec_type = AVMEDIA_TYPE_VIDEO;
 pCodecCtx->pix_fmt = AV_PIX_FMT_YUVJ422P;
 pCodecCtx->width = imgWidth;
 pCodecCtx->height = imgHeight;
 pCodecCtx->time_base.num = 1;
 pCodecCtx->time_base.den = 25;

 //dump info
 av_dump_format(pFormatCtx, 0, OutputFileName, 1);

 struct AVCodec *pCodec = avcodec_find_encoder(pCodecCtx->codec_id);
 if (!pCodec)
 {
 retval = 3;
 perror("ff_yuv422_to_jpeg(): avcodec_find_encoder");
 goto out_close_st;
 }

 if (avcodec_open2(pCodecCtx, pCodec, NULL) < 0)
 {
 retval = 4;
 perror("ff_yuv422_to_jpeg(): avcodec_open2");
 goto out_close_st;
 }

 /* ===== frame ===== */
 struct AVFrame* pictureFrame = av_frame_alloc();
 pictureFrame->width = pCodecCtx->width;
 pictureFrame->height = pCodecCtx->height;
 pictureFrame->format = AV_PIX_FMT_YUVJ422P;

 int picSize = av_image_get_buffer_size(AV_PIX_FMT_YUVJ422P, pCodecCtx->width, pCodecCtx->height, 1);
 uint8_t* pictureBuffer = (uint8_t*)av_malloc(picSize);
 av_image_fill_arrays(pictureFrame->data, pictureFrame->linesize, pictureBuffer, AV_PIX_FMT_YUVJ422P, pCodecCtx->width, pCodecCtx->height, 1);

 /* ===== write header ===== */
 int notUseRetVal = avformat_write_header(pFormatCtx, NULL);
 
 struct AVPacket* pkt = av_packet_alloc();
 av_new_packet(pkt, imgHeight * imgWidth * 3);
 pictureFrame->data[0] = pictureBuffer + 0 * (yuvLength / 4);
 pictureFrame->data[1] = pictureBuffer + 2 * (yuvLength / 4);
 pictureFrame->data[2] = pictureBuffer + 3 * (yuvLength / 4);

 /* ===== encode ===== */
 int ret = avcodec_send_frame(pCodecCtx, pictureFrame);
 while (ret >= 0)
 {
 pkt->stream_index = video_st->index;
 ret = avcodec_receive_packet(pCodecCtx, pkt);
 if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF)
 {
 retval = 5;
 perror("ff_yuv422_to_jpeg(): avcodec_receive_packet");
 goto out_close_picture;
 }
 else if (ret < 0)
 {
 retval = 6;
 perror("ff_yuv422_to_jpeg(): avcodec_receive_packet ret < 0");
 goto out_close_picture;
 }
 av_write_frame(pFormatCtx, pkt);
 }
 av_packet_unref(pkt);

 /* ===== write trailer ===== */
 av_write_trailer(pFormatCtx);

#if Print_Debug_Info
 printf("yuv2jpg Encode Success.\n");
#endif

out_close_picture:
 if (pictureFrame) av_free(pictureFrame);
 if (pictureBuffer) av_free(pictureBuffer);

out_close_st:
 // old school
 // if (video_st) avcodec_close(video_st->codec);

out_close_ctx:
 if (pFormatCtx) avformat_free_context(pFormatCtx);

out_return:
 return retval;
}



and my log :


Output #0, image2, to 'img.jpg':
 Stream #0:0: Unknown: none
[image2 @ 0x38750] Encoder did not produce proper pts, making some up.
ff_yuv422_to_jpeg(): avcodec_receive_packet: Success



I looked up the avcodec_receive_packet()'s reference, and my code return error code
AVERROR(EAGAIN)
.

-
Transcoding HD RTP/UDP stream with FFMPEG
19 juin 2017, par SudoSuI’ve a Tera STI440 streamer with two inputs used (for TV channel streaming). When I watch the source stream it seems allright, but when I start FFMPEG transcoding, the image is going to collapse on random times (probably around every 5-15 sec). The transcoding is okay with SD 480P streams.
FFPROBE one of my HD stream :
`Input #0, rtp, from 'rtp://239.192.24.3:1234/':
Duration: N/A, start: 18002.926656, bitrate: N/A
Program 202
Metadata:
service_name : M5 HD
service_provider: Magyar Televizio
Stream #0:1: Video: h264 (High) ([27][0][0][0] / 0x001B), yuv420p(tv, bt709, top first), 1440x1080 [SAR 4:3 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
Stream #0:0(hun): Audio: mp2 ([3][0][0][0] / 0x0003), 48000 Hz, stereo, s16p, 128 enter code herekb/sFFPROBE one of my SD stream (Which is working properly) :
Input #0, rtp, from 'rtp://239.192.24.4:1234/':
Duration: N/A, start: 51003.435044, bitrate: N/A
Program 203
Metadata:
service_name : RTL Klub
service_provider: Magyar RTL Telev�zi� Zrt.
Stream #0:0: Video: h264 (High) ([27][0][0][0] / 0x001B), yuv420p(tv, bt470bg, top first), 720x576 [SAR 12:11 DAR 15:11], 25 fps, 25 tbr, 90k tbn, 50 tbc
Stream #0:1(hun): Audio: aac_latm (HE-AAC) ([17][0][0][0] / 0x0011), 48000 Hz, stereo, fltpI want to do a HLS stream so I ran this script for FFMPEG :
/usr/bin/ffmpeg -loglevel 16 -i rtp://239.192.24.3:1234/ -s pal -c:v libx264 -c:a libmp3lame -b:v 1000k -b:a 96k -ar 44100 -vf 'yadif=0:-1:1' -preset:v superfast -f hls -hls_time 7 -hls_list_size 10 -hls_wrap 10 -hls_base_url http://10.3.1.3:8080/ts/ -hls_segment_filename /tvman/hls_out/ts/M5_hq_%03d /tvman/hls_out/subplaylist/M5-hq.m3u8
I access the playlist file from NGINX but also tried Apache too.
Here’s some log from FFMPEG process (loglevel 16)I made some diagnostics :
- Looked for network traffic (it’s around 60 mbps, so it should be okay with a 100mbps ethernet
- CPU & RAM load allright
- I reduced the network traffic by turning off TV channel streams on streamer. It was around 6-7 mbps.
If you need any more information, I’ll provide it for you.
Thanks for the help !P.S. : I’m not native English speaker, so sorry for mistakes. :)