
Recherche avancée
Médias (2)
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
Autres articles (68)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
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 (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains 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 ;
Sur d’autres sites (10083)
-
Revision 16270 : toutes les pages de configuration presentent le menu de configuration en ...
24 septembre 2010, par cedric@… — Logtoutes les pages de configuration presentent le menu de configuration en colonne de gauche
-
Stream frames of videos to server, compile, and download
20 avril 2016, par Amol PatelI have an application that currently allows a user to upload a video and plays the gray-scaled version of the video side by side in real time. I want to be able to upload the gray-scaled video to a server frame by frame, compile the frames, and then allow the user to download the video. I have looked at various libraries such as ffserver, stream-encoder.js, node-video, etc. but have not been able to find something that does what I need. I plan on running ffmpeg on the server side to compile the frames
Any tips or libraries I could use would be very helpful.
Thanks
-
How to download audio and video as separate files and specify the output format and filename for each ?
14 novembre 2023, par TaakoI'd like to download a video as separate files for both audio and video and have them named
[video_id]-audio.wav
and[video_id]-video.mp4


How do i get yt-dlp to download the video and audio separately, then convert each to the specified output format and rename them as such ?


Right now I can get them each downloaded separately but the naming isnt working out.


I could also use ffmpeg separately to convert the video and audio formats after they are downloaded, so all i really need is to have the audio and video files downloaded and named


Right now my args are


YT_OPTIONS = {
 'format': 'bestvideo[height<=720]+bestaudio/best[height<=720]',
 'extractaudio': True,
 'keepvideo': True,
 'outtmpl': '%(id)s-%(format)s.%(ext)s',
 'restrictfilenames': True,
 'noplaylist': True
}



but the
format
is just coming out as247_-_1280x720_720p_+251_-_audio_only_medium
and whats worse is it is the same for both the audio only and video only files just one has251
and the other has247
.