
Recherche avancée
Autres articles (26)
-
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
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 (...)
Sur d’autres sites (3818)
-
Convert file.ts to file.aac with ffmeg
8 mars 2021, par Md EnayatI'm new at this point, could you tell me to convert file.ts to file.aac through FFmpeg and using this below command to convert from my command prompt.


ffmpeg.exe -i file.ts -acodec copy file.aac



and I'm getting this as error :


[NULL @ 000002693d53d380] Unable to find a suitable output format for 'file.aac'
file.aac: Invalid argument



Thank you


-
Convert file.ts to file.acc with ffmeg
8 mars 2021, par Md EnayatI'm new at this point, could you tell me to convert file.ts to file.acc through FFmpeg and using this below command to convert from my command prompt.


ffmpeg.exe -i file.ts -acodec copy file.acc



and I'm getting this as error :


[NULL @ 000002693d53d380] Unable to find a suitable output format for 'file.acc'
file.acc: Invalid argument



Thank you


-
I have a m3u8 file where the individual files don't have any .ts format, Is there a way to cocnat them to a single mp4 file
6 septembre 2020, par Suhail HussainHere is a snippet of the m3u8 file


#EXTM3U
#EXTINF:1,0
0
#EXTINF:1695,0c9c3bf590e32dcb8c4b83222056838b
0c9c3bf590e32dcb8c4b83222056838b
#EXTINF:1,1
1
#EXTINF:4,2
2
#EXTINF:3,3
3
#EXTINF:4,4
4
#EXTINF:3,5
5
#EXTINF:3,6
6
#EXTINF:4,7
7
#EXTINF:4,8
8
#EXTINF:3,9
9
#EXTINF:4,10
10



This goes on for some 500 files. I am able to open the folder in vlc as a playlist but it is just a collection of 500 files that play one after the another. I checked online and found that ffmpeg can concatenate a m3u8 file to a mp4. That unfortunately did not work. After trying a few different syntaxes that I found on different forums which also did not work, I tried "ffplay" on the file name which once again gave the same error message as before -
Invalid data found when processing input:= 0B f=0/0


So this made me believe perhaps ffmpeg is unable to open the file while vlc is able to. Any way to combine these files to a single file is appreciated