
Recherche avancée
Autres articles (97)
-
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (11654)
-
Concatenation not working in ffmpeg for unknown reason
5 janvier 2021, par Jimmy Bungaloi'm trying to concatenate 2 videos in ffmpeg, using
ffmpeg -y -f concat -safe 0 -i /path/to/mylist.txt -c:v libvpx-vp9 -c:a libopus output.webm
, in whichmylist.txt
is

file /path/to/file.mp4
file /path/to/file.mkv



and the output is


[concat @ 0x7b53638000] Line 1: unknown keyword 'file' /path/to/mylist.txt: Invalid data found when processing input



i also tried using
"concat:file.mp4|file.mkv"
but it just replicatedfile.mp4

my question is, what is the problem here ? the method i used is verified on ffmpeg's website

-
configure : Combine dynamicbase and nxcompat checks
26 septembre 2015, par Alex Smith -
How to increase video encoding speed in ffmpeg ?
16 octobre 2017, par Ashutosh TiwariI am recording video clips and then joining all the clips in a final video.
Everything goes fine but the joining process takes too long.Tried to using some ffmpeg filters from here :
https://trac.ffmpeg.org/wiki/Encode/H.264And here is my ffmpeg command that I am using to increase the speed (which seems to be wrong) :
command = new String[]{"-y",
"-f",
"concat",
"-safe",
"0",
"-i",
"/storage/emulated/0/DCIM/my_file.txt",
"-c:v",
"-preset",
"fast",
"-crf",
"22",
"copy",
"-flags",
"+global_header",
"/storage/emulated/0/DCIM/SampleApp/" + videoOutputPath
};Please help ! Thanks much.