
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (97)
-
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 (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
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 (6516)
-
using find in subprocess.call() gives error while the command executes properly from command prompt
28 février 2018, par Devaraj GHC:\Windows\System32> ffmpeg -i D:\devaraj\KPIX_test.ts -vf "blackframe" -an -f n
ull - 2>&1|find "Parsed" > D:\devaraj\info.txtthis works fine , writes the file info.txt
subprocess.call('ffmpeg' ,'-i', 'D:\devaraj\KPIX_test.ts' ,'-vf', '"blackframe"', 'D:\devaraj\KPIX_textfinal.mp3', '- 2>&1>','|','find', '"Parsed"', '>' ,'D:\devaraj\info.txt', 'shell=True')
gives an error buffer size must be integer
were as
subprocess.call('ffmpeg -i D:\devaraj\KPIX_test.ts -vf "blackframe" -an -f n
ull - 2>&1|find "Parsed" > D:\devaraj\info.txt', shell=True)gives an error
’find’ is not recognized as an internal or external command,
operable program or batch file.any help would be appreciated from d bottom of heart
-
Cant add a custom name to my fluent-ffmpeg converted file
11 août 2019, par mouchin777Im trying to add a custom name based on the name of the downloaded youtube video to the file converted by fluent-ffmpeg. Problem is I dont know how to add it into the function since var saveLocation isnt being overwriten.
const ytdl = require('ytdl-core')
const ffmpeg = require('fluent-ffmpeg');
ffmpeg.setFfmpegPath("myffmpegLocation.exe")
videoUrl = "this_is_a_youtube_url"
var saveLocation = "";
stream = ytdl(videoUrl).on('info', (info) => {
console.log(info.title)
saveLocation = "./"+info.title+".mp3" //this is not being saved
});
var proc = new ffmpeg({ source: stream, nolog: true }).toFormat('mp3').audioBitrate(320).on('end', function() {
console.log('file has been converted successfully');
})
.on('error', function(err) {
console.log('an error happened: ' + err.message);
})
.saveToFile(saveLocation); //The file title --> I want to use the var saveLocation there -
FFmpeg Arthenica always encodes with x265 Main10 profile [closed]
5 avril, par Jabed DhaliI'm using FFmpeg-Kit (Arthenica) for iOS to compress videos using the libx265 encoder. I'm building FFmpeg with a custom configuration script :


export CUSTOM_CONFIG="--disable-indevs \
 --disable-outdevs \
 --disable-hwaccels \
 --enable-videotoolbox \
 --disable-protocols \
 --enable-protocol=file,fd,saf,async \
 --disable-decoders \
 --enable-decoder=${ENABLE_DECODER_LIST} \
 --disable-encoders \
 --enable-encoder=${ENABLE_ENCODER_LIST}"

export CUSTOM_CONFIG_IOS=${CUSTOM_CONFIG}
 ./ios.sh --enable-ios-videotoolbox --enable-lame --enable-libaom --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libxml2 --enable-opencore-amr --enable-openh264 --enable-opus --enable-twolame --enable-x264 --enable-x265 --enable-gpl



Then I run FFmpeg with the following commands :


-y -hide_banner -i input.MOV -vcodec libx265 -x265-params profile=main output.mov
-y -hide_banner -i input.MOV -vcodec libx265 -x265-params profile=main10 output.mov



However, regardless of the profile I set, the output always ends up being encoded with the Main10 profile.


Here’s the log output :


x265 [info]: HEVC encoder version 3.4
x265 [info]: build info [Mac OS X][clang 16.0.0][32 bit][noasm] 10bit
x265 [info]: using cpu capabilities: none!
x265 [info]: Main 10 profile, Level-5 (Main tier)



It seems that the FFmpeg build only supports 10-bit encoding. I want to be able to encode with different profiles (main, main10, etc.), as well as to build libx265 in a way that supports 8-bit + 10-bit + 12-bit encoding (unified 64-bit build), as like as the same command executes for MacOS.


x265 [info]: HEVC encoder version 4.1+1-1d117be
x265 [info]: build info [Mac OS X][clang 16.0.0][64 bit] 8bit+10bit+12bit
x265 [info]: using cpu capabilities: NEON Neon_DotProd Neon_I8MM
x265 [info]: Main profile, Level-2.1 (Main tier)



How can I correctly configure and build FFmpeg and libx265 with Mobile FFmpeg to support multiple bit depths and allow setting different profiles via -x265-params ?