
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (103)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Submit enhancements and plugins
13 avril 2011If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.
Sur d’autres sites (4885)
-
ffmpy concatenate multiple files with a file list
10 novembre 2018, par r4ptorI’m currently trying to merge multiple video files with a python script using ffmpeg and ffmpy.
The names of the files are being written into a file list, as suggested by the ffmpeg concatenate wiki.In my example I’m only using two files, but in practice, there will be several hundert files, that’s why I’m choosing the file list approach.
My current code looks like this :
import os
import ffmpy
base_dir = "/path/to/the/files"
# where to seek the files
file_list = open("video_list.txt", "x")
# scan for the video files
for root, dirs, files in os.walk(base_dir):
for video_file in files:
if video_file.endswith(".avi"):
file_list.write("file './%s'\n" % video_file)
# merge the video files
ff = ffmpy.FFmpeg(
global_options={"-f",
"concat ",
"-safe",
"0"},
inputs={file_list: None},
outputs={"-c",
"copy",
"output.avi"},
)
ff.run()So the code I want to run with ffmpy is
ffmpeg -f concat -safe 0 -i video_list.txt -c copy output.avi
But unfortunately my script isn’t working and the resulting error is
Traceback (most recent call last):
File "concat.py", line 20, in <module>
"output.avi", }
File "/usr/lib/python3.7/site-packages/ffmpy.py", line 54, in __init__
self._cmd += _merge_args_opts(outputs)
File "/usr/lib/python3.7/site-packages/ffmpy.py", line 187, in _merge_args_opts
for arg, opt in args_opts_dict.items():
AttributeError: 'set' object has no attribute 'items'
</module>Any hints why the command isn’t working the way it should ? Am I missing something regarding the command formatting for ffmpy ?
Thank you.
-
show subtitles list, get id and name of each subtitles track
21 septembre 2020, par user25I would like to get some list of all available subtitles tracks like :



#1 - id, name
#2 - id, name
#3 - id, name
...




So list would tell how much subtitles tracks I have, show id and name of each track



Is there any
FFmpeg
option to show such list ?

-
avcodec/j2kenc : More complete list of supported pixel formats
30 mars 2023, par Michael Niedermayer