
Recherche avancée
Autres articles (41)
-
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 (...) -
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 -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (6791)
-
How to create in Infinite Live Stream on Youtube ?
20 mai 2017, par Quin ToschI wanted to know how to make an Infinite Live stream on Youtube with ffmpeg like this one : https://www.youtube.com/watch?v=H7q9MxktwlY (The stream ended a few weeks ago)
-
How to create in Infinite Live Stream on Youtube ?
20 mai 2017, par Quin ToschI wanted to know how to make an Infinite Live stream on Youtube with ffmpeg like this one : https://www.youtube.com/watch?v=H7q9MxktwlY (The stream ended a few weeks ago)
-
Calling one CLU(command line utility) with argument from another CLU in cmd ( youtube-dl from ffmpeg with additional arguments)
3 septembre 2019, par beastboyI am able to run youtube-dl using command prompt , I have already kept youtube-dl.exe in the ffmpeg main folder and the ffmpeg bin folder and also I have kept ffmpeg.exe in the youtube_dl folder,
now I am trying to call ffmpeg.exe in command prompt from youtube-dl with some additional arguments in ffmpeg and vice versa with the below commands
and getting the following erros.Command
C:\ffmpeg>youtube-dl -f 160 https://www.youtube.com/watch?v=u3APNJYMrLo --hls-prefer-ffmpeg --external-downloader ffmpeg --external-downloader-args -ss 00:00:20 -to 00:00:30
Command
C:\youtube_dl>youtube-dl -f 160 https://www.youtube.com/watch?v=u3APNJYMrLo --hls-prefer-ffmpeg --external-downloader ffmpeg --external-downloader-args -ss 00:00:20 -to 00:00:30
Error
Usage: youtube-dl [OPTIONS] URL [URL...]
youtube-dl: error: using output template conflicts with using title, video ID or auto numberand
Command
ffmpeg -ss 00:00:20 -to 00:00:30 -i "$(youtube-dl -f 160 -g https://www.youtube.com/watch?v=u3APNJYMrLo)" -c copy youtube.mp4
Error
$(youtube-dl: No such file or directory
Command
ffmpeg -ss 00:00:20 -to 00:00:30 -i $(youtube-dl -f 160 -g https://www.youtube.com/watch?v=u3APNJYMrLo) -c copy youtube.mp4
Error
$(youtube-dl -f 160 -g https://www.youtube.com/watch?v=u3APNJYMrLo): Invalid argument
as per my understanding and the documentation pages of youtube-dl and ffmpeg the commands should work and should download the videos in the specified resolution but its not working.
Can someone guide me on this , what is wrong with the code and how to rectify it if any.