
Recherche avancée
Autres articles (35)
-
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
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 (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...)
Sur d’autres sites (9566)
-
Apply option limitMultiFileUploads even when limitMultiFileUploadSize is defined.
4 décembre 2013, par dougdomenyApply option limitMultiFileUploads even when limitMultiFileUploadSize is defined.
Ensure neither limit is exceeded when uploading.
-
What does `-map data-re` option in FFMPEG do ?
9 décembre 2024, par zardoshtI am trying to extract and parse KLV data from a video stream. I found the following example in a Github repository. I am wondering what does the mapping option
data-re
do ?

$ ffmpeg -i Day\ Flight.mpg -map data-re -codec copy -f data - 



I understand the rest of the command, and know that
-map
is used to choose streams from inputs. But what doesdata-re
mean. I couldn't find any explanation for it (or similar mapping option or stream identifier) in the documentation, e.g. here and here.

-
Using hwaccel ffmpeg option with moviepy library
12 octobre 2022, par Nicola LepetitI am trying to add the hwaccel option of ffmpeg to a script I am working on in Python, based on the moviepy library, by passing the options via the
ffmpeg_params
parameter :

from moviepy.editor import VideoFileClip

ASSETS_FOLDER = "./assets/backgrounds/road/"
video_file_name = "12386.mp4"
start_time = 5
end_time = 20
target_file = "output.mp4"

video = VideoFileClip(f"{ASSETS_FOLDER}{video_file_name}")
new = video.subclip(start_time, end_time)
new.fps = 25
new.write_videofile(target_file, ffmpeg_params= ['-hwaccel','cuda'])



The problem is that these ffmpeg_params are added at the end of the ffmpeg command line, so I am getting the following error :


[Errno 22] Invalid argument

MoviePy error: FFMPEG encountered the following error while writing file 
 ./assets/temp/3/cut1.mp4:

 b'Option hwaccel (use HW accelerated decoding) cannot be applied to output url 
 ./assets/temp/3/cut1.mp4 -- you are trying to apply an input option to an output file
 or vice versa. Move this option before the file it belongs to.\r\nError parsing
 options for output file ./assets/temp/3/cut1.mp4.\r\nError opening output files:
 Invalid argument\r\n'



Is there another way to use the option with moviepy