
Recherche avancée
Autres articles (38)
-
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)
Sur d’autres sites (5292)
-
Is there a way to download from BluTV streaming video ? [closed]
4 mai 2020, par nonNameSo im downloading a show from a website called bluTV, the first 10 episodes are free and i was able to download them with stream recorder, also their network showed segments.ts some of them had m3u8 link,
but i tried the trial and wanted to get the rest episodes the stream recorder failed because they were DRM protected, the network of the episodes showed segments in mp4 like this



video-0-0.mp4
video-0-4.mp4
audio-0-0.mp4
audio-0-0.mp4
video-0-4.mp4



the "4" is probably the highest resolution and it repeats everytime in the networks in inspect



I was wondering is there a way to download them ? Also i couldn't find a m3u8 link for those episodes.
i can download any of the video-0-4.mp4 and its like 1gb also the audio-0-0.mp4 is 60 mb
but when i play them in vlc they are empty but they still run the entire episode time.


-
how download m3u8 in chunks using ffmpeg ?
9 mai 2020, par relidonI'm trying to convert
m3u8
tomp4
and I found the following method that works


ffmpeg -i 'https://....m3u8' -bsf:a aac_adtstoasc \
 -vcodec copy -c copy -crf 50 output.mp4




The end result, however, is too big for me to drag into an external hard drive.



I also tried writing directly to the hard drive
/Volumes/2TR/output.mp4
but the end result is the same - the file is too big, the operation fails.


I noticed that if I terminate the operation at any point, the
output.mp4
file works perfectly, but that it's not the full video (perfect). If the video is one hour and I just want 30 minutes of it I can terminate theffmpeg
operation at that point.


So I'm wondering whether there's a way for
ffmpeg
to download the contents in two parts,output-part1.mp4
andoutput-part2.mp4
?

-
looking for gui based HLS downloader based on ffmpeg & or better download code [closed]
26 mai 2020, par wahiduzzaman sagarcurrently using ffmpeg for downloading HLS video (m3u8). the code i am using is



ffmpeg -i "www.videoURL.com" -c copy "name name".mp4




its works fine but the problem is it takes a bit more time since I also have to give each video a name where other downloader (video downloadhelper) can automatically get a name from URL. video downloadhelper crashing/stopping a lot so not using it now. also it cant boost speed so i have to run 10-12 simultaneous ffmpeg download with command prompt open to keep the bandwidth use high. which is cluttering the screen and being hard to keep track of.
so is there any better code for faster download or maybe GUI downloader with some feature like auto naming, multi download, etc