Advanced search

Medias (91)

Other articles (65)

  • Des sites réalisés avec MediaSPIP

    2 May 2011, by

    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.

  • Taille des images et des logos définissables

    9 February 2011, by

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

  • Librairies et logiciels spécifiques aux médias

    10 December 2010, by

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel; FFMpeg avec le maximum de décodeurs et (...)

On other websites (3424)

  • I want to reduce the size of video with rn-ffmpeg-kit, but video size getting double or I'm getting increased size of video

    12 September 2023, by Atul Tiwaree

    Below is my code It works fine while I try to reduce video taken from my camera other than my device video when I try the size of video is getting double in size

    


    FFmpegKit.executeAsync(`-y -hwaccel mediacodec -i ${uri} -s 1920x1080 -c:a copy -c:v hevc_mediacodec -b:v 2M ${RNFS.DownloadDirectoryPath}/lodu1.mp4 -y`,)


    


    Here is the video that is getting double in size

    


    https://cl1p.net/atultiwaree

    


  • Merge/add audio in video file in specific position of video with ffmpeg command

    12 January 2021, by Aadi

    Example: I have a 10sec video and 4 sec audio file. I want to merge audio file in video from 5th sec of video to 9th sec. I want to mute entire video volume if user asked for it(optional).

    


    Please help me with this ffmpeg command, and Thanks in advance.

    


    I am using Android FFMPEG SDK. I haven't tried anything till now as I have no idea where to start.

    


  • Encoding video live? (Showing frame which i will overlay on camera while recording video)

    18 July 2019, by Marko Miljkovic

    I’m not sure I can really explain this the best way I can, but I’ll try my best.
    I want to create custom camera activity, which will capture video from camera, and show some image over that video, and actually encode that image in video. I`m pretty sure I need to use ffmpeg, but, I want to know, is there a way that I can record a video and an image together, and encode it realtime, or do I need to go around, make camera activity, put image over video, as another view, get its coordinates, and then encode it in video using this command:

    ffmpeg -i movie.mp4 -i logo.png -filter_complex overlay output.mp4

    It this command is the only way, how would I add more than one image as overlay?