Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (48)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (5695)

  • M3U8. Convert all parts to mp4 [closed]

    5 juin 2020, par Zikrulloh Tolibjonov

    My name is Zikrullah. I have the m3u8 file of the serial. 1 m3u8 file contains all parts of the series and all audio languages for the player. The parts in it were saved in ts format for 10 seconds (as far as I understand). When I opened the m3u8 file, it contained a link to other m3u8 files. If I'm not mistaken, these are separate m3u8s for audio languages. but all m3u8 and ts files related to the video are on a other server. I need to upload all the files to my server while keeping them all in order. Of course using php. I'm sorry if I made a mistake. I don't know English well, but I tried :)

    


  • Revision 59d63e610a : vp9 : fix -Wclobbered (longjmp + local variables) Local variables used at the se

    23 décembre 2014, par James Zern

    Changed Paths :
     Modify /vp9/decoder/vp9_decoder.c


     Modify /vp9/encoder/vp9_encoder.c



    vp9 : fix -Wclobbered (longjmp + local variables)

    Local variables used at the setjmp() site need to be marked volatile.
    Relevant excerpt from the ’man longjmp’ :

    ===============
    The values of automatic variables are unspecified after a call to
    longjmp() if they meet all the following criteria :
    · they are local to the function that made the corresponding setjmp(3) call ;
    · their values are changed between the calls to setjmp(3) and longjmp() ; and
    · they are not declared as volatile.
    ===============

    Change-Id : I093e6eeeedbf5f781d202248ca701ba2c29d3064

  • How to concat MP4 files in JAVA [on hold]

    24 octobre 2017, par Laurent NAVET

    I have to concatenate 2 videos in MP4 format, one of which I receive via WS REST in InputStream and the other one on the hard disk.

    1. The first solution studied was SequenceInputStream(file1, file2) but it does not work.

    2. I tried with FFmpeg command line it works, but I can not directly convert the 2 MP4 file I need to convert to mpeg first. Here are the orders made :

      ffmpeg -i 1.mp4 DD.mpeg
      ffmpeg -i DS.mp4 EE.mpeg
      ffmpeg -i "concat:DD.mpeg|EE.mpeg" -c copy output.mpeg
      ffmpeg -i output.mpeg ok.mp4

    However, if I have to do it in java, it will be long to do because I have to store all on the disk ... and at the end redo an inputStream ...

    Do you have a robust solution to concat 2 MP4 streams ? Knowing that the 2 MP4 files can have different codecs or other ...

    Thank you.

    Regards,
    Lawrence.