Recherche avancée

Médias (91)

Autres articles (106)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

  • Support de tous types de médias

    10 avril 2011

    Contrairement à 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) (...)

Sur d’autres sites (7490)

  • 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 Hussain

    Here 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

    


  • Combine multiple video and single audio stream into a single output

    15 janvier 2020, par Prashant Saraswat

    I am trying to record an online meeting.
    During the meeting I will receive continuous audio and intermittent video

    • A. Audio B. Video1 C. Video 2

    The Audio stream will span the length of the call. The video1 and video2 streams will be somewhere in the middle.

    Assuming I know the timestamps for all of these streams, how do I combine them in one video ?

    Consider the scenario where the audio stream starts at Tbegin and ends at Tend. The video1 stream starts at T1 and ends at T2. The video2 stream starts at T3 and ends at T4.

    We can assume that the audio stream is of type mp3 and the other streams are of type mp4

  • libavformat/mxfenc : color_range should be inclusive

    20 août 2020, par Harry Mallon
    libavformat/mxfenc : color_range should be inclusive
    

    MXF CDCI color range was being set to (1<<sc->component_depth) - 1
    for full range but it should be (1<<sc->component_depth) as 0 is
    a valid value.

    Signed-off-by : Harry Mallon <harry.mallon@codex.online>

    • [DH] libavformat/mxfenc.c