Recherche avancée

Médias (91)

Autres articles (112)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (11731)

  • how can I link FFmpeg and OpenCV by building from source code in my c++ project ? [closed]

    27 juin 2020, par abid ahsan

    I've gone through so many Cmake and Other tutorials to link libraries correctly but things are really convoluted and I can't find the best to get on with my work. I want to start a c++ project using FFmpeg and OpenCV and I want a link library using only Cmake without any package manager. I want to keep these 3rd party libraries in my project directory so that, I can clone my repo from Github and build easily without any dependency. What is the best way to do link 3rd party libraries...

    


    (sorry for my bad usage of English. I really need help)

    


  • ffmpeg gif watermark played 1 times

    5 mai 2014, par user3605000

    I try to insert gif watermark in ffmpeg, but gif image played 1 times, and then i have just static image. I need the animation to play all the time.

    ffmpeg -i rtmp://x.x.x.x -vf "movie=logo.gif [logo]; [in][logo] overlay=10:10 [out]" -c:v libx264 -an -f flv rtmp://x.x.x.x

    How can I achieve this ? Sorry for my bad english

  • FFMPEG - convert video with multiple audio and subtitles

    3 juillet 2022, par Armitage2k

    I have a MKV video file with 1x video track, 3x audio tracks and 2x subtitle tracks.

    


    Now, I use the code below convert the video to x265 but sadly have no control over which audio and subtitles to convert. Can someone advise how I can tweak the statement to use audio track #0:3 and subtitle #0:4 ?

    


    ffmpeg -i INPUT.mkv -c:v libx265 -c:a copy -x265-params crf=25 OUTPUT.mkv

    


    This is what the .mkv file contains :

    


      Stream #0:0(jpn): Video: h264 (High), yuv420p(progressive), 1280x692 [SAR 1:1 DAR 320:173], 23.98 fps, 23.98 tbr, 1k tbn, 47.95 tbc (default)
  Stream #0:1(eng): Audio: aac (LC), 48000 Hz, stereo, fltp (default)
    Metadata:
      title           : English 2.0 channel AAC (Original)
  Stream #0:2(eng): Audio: aac (LC), 48000 Hz, stereo, fltp
    Metadata:
      title           : English 2.0 channel AAC (New)
  Stream #0:3(jpn): Audio: aac (LC), 48000 Hz, stereo, fltp
    Metadata:
      title           : Japanese 2.0 channel AAC
  Stream #0:4(eng): Subtitle: ass (default)
    Metadata:
      title           : Signs/Karaoke [Kametsu]
  Stream #0:5(eng): Subtitle: ass
    Metadata:
      title           : Re-styled [Kametsu]
  Stream #0:6: Attachment: ttf
    Metadata:
      filename        : nyala.ttf
      mimetype        : application/x-truetype-font
  Stream #0:7: Attachment: ttf
    Metadata:
      filename        : fontastique.ttf
      mimetype        : application/x-truetype-font
  Stream #0:8: Attachment: ttf
    Metadata:
      filename        : ARIALNB.TTF
      mimetype        : application/x-truetype-font
  Stream #0:9: Attachment: ttf
    Metadata:
      filename        : BorisBlackBloxx.ttf
      mimetype        : application/x-truetype-font
  Stream #0:10: Attachment: ttf
    Metadata:
      filename        : CODE2000.TTF
      mimetype        : application/x-truetype-font
  Stream #0:11: Attachment: ttf
    Metadata:
      filename        : CronosPro-Semibold.ttf
      mimetype        : application/x-truetype-font
Stream mapping:
  Stream #0:0 -> #0:0 (h264 (native) -> hevc (libx265))
  Stream #0:1 -> #0:1 (copy)
  Stream #0:4 -> #0:2 (ass (ssa) -> ass (ssa))


    


    Thank you very much