
Recherche avancée
Autres articles (50)
-
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (6484)
-
Can FFmpeg be used as a library, instead of a standalone program ?
27 novembre 2023, par user123003I'd like to add video conversion capabilities to a program I'm writing. FFmpeg's command line interface for doing this is simply
ffmpeg -i InputFile OutputFile
, but is there a way to make use of it as a library, so I can do something likeffmpeg_convert(InputFile, OutputFile)
?

I'm hoping I won't have to use libavcodec directly, as I imagine it will be far more complex than a one-line function to convert between formats. If FFmpeg can't be easily retrofitted to do this, is there perhaps another library based on it that does ? I've heard of libvlc, but that seems to only expose a video playing API, not video conversion.


-
Can FFmpeg be used as a library, instead of a standalone program ?
2 février 2017, par user123003I’d like to add video conversion capabilities to a program I’m writing. FFmpeg’s command line interface for doing this is simply
ffmpeg -i InputFile OutputFile
, but is there a way to make use of it as a library, so I can do something likeffmpeg_convert(InputFile, OutputFile)
?I’m hoping I won’t have to use libavcodec directly, as I imagine it will be far more complex than a one-line function to convert between formats. If FFmpeg can’t be easily retrofitted to do this, is there perhaps another library based on it that does ? I’ve heard of libvlc, but that seems to only expose a video playing API, not video conversion.
Thanks.
-
ffmpeg issue when recording screen+microphone+(music from file)
9 juin 2016, par Taras NikulinI’m trying to record using this command :
ffmpeg -f avfoundation -pix_fmt nv12 -i "1:0" -r 30 -i monoSound.aac -filter_complex amerge=inputs=2 -vcodec h264 -qscale:v 0 -acodec aac -ab 128k -ac 1 -ar 44100 -async 30 outScreen.mp4
I get such error :
The following filters could not choose their formats: Parsed_amerge_0
Consider inserting the (a)format filter near their input or output.
Error configuring complex filters.
Input/output errorIf i rewove this "-async 30", then no errors appear in terminal. But on final video sound will disappear after couple seconds.