
Recherche avancée
Autres articles (94)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...)
Sur d’autres sites (7322)
-
Add logo in a specific time interval relative to the end
14 novembre 2014, par Kåre Brøgger SørensenIs there a way - in a one liner - where I do not have to use ffmpeg to calculate the duration of the whole video before i render ..
I would like something like :
ffmpeg -i ny_video_no_logo.mp4 -i ~/Pictures/home_logo_roed_new.png -filter_complex "[0:v][1:v]overlay=main_w-overlay_w-10:main_h-overlay_h-10:enable='between(t,5.50,FULl_LENGTH - 10)'" -codec:a copy out.mp4
I there a simple way like the "main_w" to get the video length inserted - I am using a non existing variable
FULL_LENGTH
in the above ?Or do i have to make a
ffmpeg -i
and extract the time from this ? -
Anomalie #2647 : Logo/Forum : Appels Ajax qui n’aboutissent pas (FF v3.5.7)
12 avril 2012, par Julien -Même constat sur un SPIP neuf fraichement updaté du SVN à l’instant. (Depuis un autre ordi que la fois d’avant) (SPIP natif sans plugin, sans squelettes ajoutés) Cache SPIP & navigateur vidés au préalable. FF 3.5.7 - (http://www.filehippo.com/fr/download_firefox/6825/) (Pas pu testé sur grml.eu (...)
-
TypeError : parameter 'url' is missing a type annotation in callback 'play' + ffmpeg
10 décembre 2022, par morichhI can't understand why Python interpreter doesn't like the fact that I use the
url
in the last line

@client.tree.command()
async def play(interaction: Interaction, url = str):
 global voice
 channel = interaction.user.voice.channel
 voice = get(client.voice_clients, Guild=interaction.guild)
 if voice and voice.is_connected():
 await voice.move_to(channel)
 await interaction.response.send_message(f"*1*")
 else:
 voice = await channel.connect()
 await interaction.response.send_message(f"*2*")
 voice.play(discord.FFmpegPCMAudio(executable="C:/ffmpeg/bin/ffmpeg.exe", source = url)) 




By the way, ffmpeg also does not work.