
Recherche avancée
Médias (29)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (30)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
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 (...) -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (4859)
-
using ffmpeg to rotate a RTSP stream and then restram that back to my local network ( usign windows )
29 décembre 2022, par sesipodI would like to use FFMPEG to consume a stream from my cctv ip camera,rotate the video feed 90 and then re-streamt that back to my local network over rtsp. I would like to make this work on Windows only, and using the igpu in my machine to help with the cpu load. My camera does not support 90 degree rotation native so the use of FFMPEG would be nice help.


Here is what I have tried so far but it will not give me anything that I can watch on VLC for example.


ffmpeg -i rtsp://admin:passwordhere@192.168.1.147:554/h264Preview_01_main -vf "transpose=2" -c:v libx264 -b:v 1000k -s 640x480 -f rtsp



rtsp://localhost:8888/live.sdp



-
How easy is it to create a YouTube to MP3 application using yt-dlp and ffmpeg ?
26 juin 2022, par fowlisI was thinking I could automate the process of downloading a video and converting it to mp3 (or other formats).

Instead of doing the process myself (which doesn't take that long and isn't too much hassle), which looks something like this :

•yt-dlp https://www.youtube.com/watch?v=dQw4w9WgXcQ

• wait for download then (find and) rename file to something simpler for next command

•ffmpeg -i video.mp4 video.mp3



I thought I could turn it into a simple JS (or other language) program instead, where it :


- 

- Asks for link and what format I want it in
- Downloads the video
- Renames it (not sure how easy this is)
- Turns it into requested format
- Opens file location












If something like this is possible, please let me know some things I should know since I've never written a windows app before, and some general guidance for how I could do this.

I apologise if questions like this aren't exactly allowed on this site, its my first time posting too.

Thanks in advance !

-
How do I add a cool down to a command for a discord music bot [closed]
22 mars 2021, par sherbit fishI'm making a music bot in discord and I need to add a cool down into this command so that people don't spam it and crash the bot. What should I do to fix this problem ?


const ytdl = require("ytdl-core");

client.on('message', async message => {
 if (message.member.voice.channel) {
 const connection = await message.member.voice.channel.join();
 console.log(`sound was just played`);
connection.play(ytdl('https://www.youtube.com/watch?v=jRxSRyrTANY',{ highWaterMark: 50 },{ quality: 'highestaudio' },{ type: 'opus' }));
setTimeout(() => {
 connection.disconnect();
}, 12000); 
 }
});