Recherche avancée

Médias (91)

Autres articles (104)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (7424)

  • FFMPEG - Merge two video files into one [duplicate]

    24 septembre 2015, par Maximus

    This question already has an answer here :

    I have converted two different format videos into TS format by using FFMPEG and now I am trying to merge them into one video. I have used following two commands but the output file only shows the first video.

    1. ffmpeg -i "concat:1.ts|2.ts" -c copy -qscale:v 2 output.mp4
    2. ffmpeg -i "concat:1.ts|2.ts" -c copy -bsf:a aac_adtstoasc -qscale:v 2 output.mp4

    1.ts video does not have audio.

  • C/C++ examples for HW acceleration with FFMPEG on Android (JNI)

    12 février 2024, par Ramil Galin

    Are there any good C/C++ tutorials or code examples for how can one write hardware accelerated decoding on Android (JNI) ?

    


    I found related questions here on stackoverflow (here and here), but would like to know if there is something more contemporary and related to Android.

    


  • How to execute a cmd command using java program [duplicate]

    21 mars 2013, par Yaswanth Veeramachaneni

    This question already has an answer here :

    I want to execute a cmd command using java program

    ffmpeg -i input.mp4 output.mp3

    I want the above command to be executed in cmd using java language.
    and in above code I have directly given the input file name to execute but can I write a code so that user can manually give an input file ?