
Recherche avancée
Autres articles (76)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
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. -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (8362)
-
creating video from selected images using FFMPEG through command Line Android
7 septembre 2016, par Raheel Mushtaqi am trying to make a video from selected images from command line using ffmpeg in android
using this project as my source i m trying to make video
this is the command i m trying to create video
String[] ffmpegCommand = {ffmpegBin,
"-y",
"-qscale",
"1",
"-r", "" + frameRate,
"-i", image1.getAbsolutePath(),
"-t", "" + (((4) * 30) + 4), //"-s",heightwidth,
"-i", image2.getAbsolutePath(),
"-t", "" + (((4) * 30) + 4), //"-s",heightwidth,
"-i", image3.getAbsolutePath(),
"-t", "" + (((4) * 30) + 4), //"-s",heightwidth,
"-i", image4.getAbsolutePath(),
"-t", "" + (((4) * 30) + 4), //"-s",heightwidth,
"-vcodec",
"libx264",
"-s",
"640x480",
outputFile.getAbsolutePath()};but the video created shows only 1st image and video is created of less than a second
what is the problem in this statement ? and why only 1 image is shown in video ?
sorry about my bad english
-
NVIDIA Version Outdated Error when mine is updated
21 février 2021, par Agent MerlotI'm trying to encode stuff with my NVIDIA GeForce MX150 (Driver Version : 461.09).


import os

os.system(f'ffmpeg -i "Cells at Work Season 2 - Episode 07 - English Subbed.mp4" -c:a copy -c:v hevc_nvenc "07.mp4"')


Whenever I'm trying to run it, I'm getting this error.


[hevc_nvenc @ 0000017a8bdf7e40] Cannot load nvEncodeAPI64.dll

[hevc_nvenc @ 0000017a8bdf7e40] The minimum required Nvidia driver for nvenc is 436.15 or newer

Error initializing output stream 0:0 -- Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height

Conversion failed!


What bugs me is that it says that I need 436.15 or newer, and mine is 461.09. That means it should work, right ? Can anyone help ?


-
ffmpeg - converting one audio track of a multi-track mp4
30 décembre 2023, par Shaun.MI'm having a few mp4 with two audio tracks,
an english one in aac and a french one in dts.


Now I want to convert only the french dts to eac3 with a single ffmpeg command.


I use


ffmpeg -hide_banner -i input.mp4 ^
 -map_metadata -1 ^
 -map 0:0 -c:v copy ^
 -map 0:1 -c:a copy ^
 -map 0:2 -c:a eac3 -b:a 1536k ^
 -metadata:s:a:0 language=eng ^
 -metadata:s:a:0 title="Stereo" ^
 -metadata:s:a:1 language=fra ^
 -metadata:s:a:1 title="Stereo" ^
output.mp4



This works quite nice, but it converts both audio tracks to eac3, instead of leaving the first one untouched ...
What's wrong in the command ?


(ffmpeg version 2023-12-23-git-f5f414d9c4-full_build-www.gyan.dev under Windows 10)