
Recherche avancée
Autres articles (59)
-
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 -
Submit enhancements and plugins
13 avril 2011If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.
Sur d’autres sites (7769)
-
Convert youtube video files with ffmpeg to a format that can be playable on ios devices
26 décembre 2018, par AminI’ve created a
telegram robot
that downloads YouTube files and sends them to the user. Since most of our users useios
devices, Our first priority isios
.
Videos files play onWindows
andAndroid
but not broadcast onios
.
I convert format with ffmpeg after download from youtube :ffmpeg -i input.mp4 -strict -2 -vcodec mpeg4 output.mp4
But in addition to prolonging the processing time, the file size increases and eventually the file will not run again in
ios
. -
How play YouTube and Facebook Video by using FFMpeg or FFPlay ?
16 octobre 2018, par KeshvadiI want to do some measurement by streaming video from YouTube and Facebook. How can I use FFMpeg to stream video from these websites and record the playing log ?
-
Downloading a specific segment of a YouTube video
18 mai 2018, par BlueStoneI normally download files or parts of them using
ffmepg
command.ffmpeg -ss 00:05:00 -i "video url here " -t 100 -c copy -avoid_negative_ts 1 out.mkv
Now, downloading a YouTube video is not problem using
youtube-dl
, but I want to download specific part of a video (1080p+), I thought I could useyoutube-dl
to grab the link of the video and pass it toffmpeg
to do the cutting with the previous code, but could not figure how to do this.Searched and tried many commands and stuff here and there, but nothing worked.