
Recherche avancée
Autres articles (11)
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
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 (...) -
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)
Sur d’autres sites (4366)
-
FFMPEG No such filter : 'palettegen'
7 décembre 2015, par tyasirdI am using windows 10 and FFmpeg 64-bit Shared Version.
When I use palettegen effect, returns error.
ffmpeg -i input.mov -vf palettegen palette.png
returns
[AVFilterGraph @ 0228d3c0] No such filter: 'palettegen'
Error opening filters!How can I install this Filter ? Thanks.
-
FFMPEG Output Framecount Different On Audio Files PowerShell
28 avril 2020, par ilham zackyI am using FFPROBE to get some file durations in PowerShell.



For my video it gets the frame count properly but for my audio files it returns a different frame count.



This is my code :



$audioId = "$id.m4a"
$videoId = "$id.mp4"
$duration1 = ffprobe -i $videoId -show_frames 2>&1 | grep -c media_type=video
$duration2 = ffprobe -i $audioId -show_frames 2>&1 | grep -c media_type=audio
echo $duration1
echo $duration2





For video it returns a proper output, but for audio it returns a wrong result.



Any suggestions ?



Thank you


-
Get audio (M4A or MP3) file links directly from YouTube
10 mars 2018, par AlexI am developing a PHP script that obtains video download links from YouTube. The ones I am grabbing are MP4 (720p) and MP4 (360p) (no-DASH format).
My script is similar to this PHP class : https://github.com/Athlon1600/youtube-downloader
It allows me to download any YouTube video that I want, no matter if it has copyright or not. It handles everything with signature ciphering and deciphering included.
However, apart from videos, I would like to obtain audio download links from YouTube videos as well, either in MP3 or M4A.
(M4A files are provided by YouTube, but they are in DASH format, which means, it’s not a complete file, but a collection of files that need to be merged together)
Is there a way to obtain MP3 audio download links directly from YouTube ?
I would like to avoid using FFMPEG library as it requires a lot of resources.
In the case that using a library like that is the only option, what’s the most optimal way to convert MP4 files to MP3 files ?
Is there any more efficient alternative than FFMPEG ?
PLEASE avoid comments regarding YouTube TOS