
Recherche avancée
Autres articles (49)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
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 (6010)
-
ffmpeg encoding error find suitable output [closed]
30 mai 2023, par ckrxi installed ffmpeg and wanted to encode a video but it gave me an error about not being able to find a suitable output i used powershell on windows 11


i have this video that i want to encode but i get this error :


[NULL @ 00000286ec6ebc00] Unable to find a suitable output format for 'C:\Users\Dyson\OneDrive\Desktop\Render'
C:\Users\Dyson\OneDrive\Desktop\Render: Invalid argument



this is what i typed in :


ffmpeg -i "C:\Users\Dyson\OneDrive\Desktop\Render\Arden Jones--mr. sunshine.h264" `
 -i "C:\Users\Dyson\OneDrive\Desktop\Render\Arden Jones--mr. sunshine.wav" `
 "C:\Users\Dyson\OneDrive\Desktop\Render"



did i make a typo somewhere ?


-
TypeError : source must be an AudioSource not FFmpegOpusAudio
9 juin 2024, par saliceasync def play(ctx, *, link):
 try:
 voice_client = await ctx.author.voice.channel.connect()
 voice_clients[voice_client.guild.id] = voice_client
 except Exception as e:
 print(e)
 if 1==1:
 if youtube_base_url not in link:
 query_string = urllib.parse.urlencode({
 'search_query': link
 })

 content = urllib.request.urlopen(
 youtube_results_url + query_string
 )

 search_results = re.findall(r'/watch\?v=(.{11})', content.read().decode())

 link = youtube_watch_url + search_results[0]

 loop = asyncio.get_event_loop()
 data = await loop.run_in_executor(None, lambda: ytdl.extract_info(link, download=False))

 song = data['url']
 player = discord.FFmpegOpusAudio(song, **ffmpeg_options)

 voice_clients[ctx.guild.id].play(player, after=lambda e: asyncio.run_coroutine_threadsafe(play_next(ctx), bot.loop))



ffmpeg installed and added in PATH
ffmpeg lib for python added


I tried other variations of ffmpeg(like FFmpegPCMAudio) but this didn't solve the problem. I also tried to just copy-paste(Someone else's code that performs the same functions), which also did not give anything. I think the problem is not in the code.


Traceback :


Traceback (most recent call last):
 File "c:\Users\Saliceterik\AppData\Local\Programs\Python\Python310\lib\site-packages\disnake\ext\commands\core.py", line 173, in wrapped
 ret = await coro(*args, **kwargs)
 File "C:\Users\Saliceterik\Desktop\snackerbot\launch_serviceTyan_s-upd.py", line 122, in play
 voice_clients[ctx.guild.id].play(player, after=lambda e: asyncio.run_coroutine_threadsafe(play_next(ctx), bot.loop)) 
 File "c:\Users\Saliceterik\AppData\Local\Programs\Python\Python310\lib\site-packages\disnake\voice_client.py", line 583, in play
 raise TypeError(f"source must be an AudioSource not {source.__class__.__name__}")
TypeError: source must be an AudioSource not FFmpegOpusAudio```



-
PHP - How to track video conversion progress - Stop ffmpeg process in PHP web [closed]
21 mai 2022, par Mursaleen AhmadI am working on a PHP web project where multiple users will be able upload and convert their videos bitrate using ffmpeg. And if users go to watch page before full conversion then "Video is being processed" message should show up.
I am using jQuery with AJAX and a watch link generated to watch online.


1) How can I find the process is still running and show "Video is being processed" message to the users ?


2) How can I stop ffmpeg process ?


3) How can I get conversion percentage (how much video is converted) from file (as multiple users are using the site so can't work on single file named output.txt) ?