
Recherche avancée
Autres articles (52)
-
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (4446)
-
Fixed IE8/Youtube problem.
23 octobre 2010, par Jack Moorem colorbox/jquery.colorbox-min.js m colorbox/jquery.colorbox.js Fixed IE8/Youtube problem.
-
How to yt-dlp extract youtube audio-only to 32-bit float 48000 .wav ? [closed]
28 avril 2024, par 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 to change the resolution FFMPEG live streaming to youtube
15 juillet 2021, par 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