
Advanced search
Medias (1)
-
Bug de détection d’ogg
22 March 2013, by
Updated: April 2013
Language: français
Type: Video
Other articles (40)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 September 2013, byCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo; l’ajout d’une bannière l’ajout d’une image de fond;
-
Ecrire une actualité
21 June 2013, byPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
Use, discuss, criticize
13 April 2011, byTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users.
On other websites (5863)
-
how to change the resolution FFMPEG live streaming to youtube
15 July 2021, by StudyFromHomei use this code to live stream using my VPS in ffmpeg



#! /bin/bash
#


VBR="2500k" 
FPS="60" 
QUAL="ultrafast" 
YOUTUBE_URL="rtmp://a.rtmp.youtube.com/live2" 

SOURCE="/home/rsa-key/2222.mp4" 
KEY="ddf-khyf-dres-ek42-8sss" 

ffmpeg \
 -stream_loop -1 -i "$SOURCE" -deinterlace \
 -vcodec libx264 -pix_fmt yuv420p -preset $QUAL -r $FPS -g $(($FPS * 2)) -b:v $VBR \
 -acodec libmp3lame -ar 44100 -threads 6 -qscale 3 -b:a 712000 -bufsize 512k \
 -f flv "$YOUTUBE_URL/$KEY" 




how i change the resolution limit like 480p


-
How to yt-dlp extract youtube audio-only to 32-bit float 48000 .wav? [closed]
28 April 2024, by Rowe MorehouseMy use case: Extract just the audio from a youtube URL directly to a
.wav
at 32-bit float 48000.

Preferably without any post process args or secondary passes or after-the-fact conversion or muxing.


I want f32le, aka PCM_f32le, aka PCM 32-bit floating-point little-endian, which is supported by
ffmpeg
. Also want 48000 sample rate, as stated.

Is this possible?


My current command:


yt-dlp -f bestaudio --extract-audio --audio-format wav --audio-quality 0



What do I need to add to achieve my use case / job-to-be-done??


-
How easy is it to create a YouTube to MP3 application using yt-dlp and ffmpeg?
26 June 2022, by 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!