Recherche avancée

Médias (91)

Autres articles (87)

  • 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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (3372)

  • How to add watermark to video in Flutter using Flutter_ffmpeg

    14 mai 2021, par user433575

    I cannot figure out why my ffmpeg commands aren't working...

    


      Future<void> watermark(filePath, width, height) async {&#xA;&#xA;final String outPath = &#x27;watermarked.mp4&#x27;;&#xA;final String inputVideo =&#xA;    await rootBundle.loadString(&#x27;assets/ffmpeg/demo.mov&#x27;);&#xA;final String inputWatermark = await rootBundle&#xA;    .loadString(&#x27;assets/ffmpeg/video_overlay.png&#x27;);&#xA;final arguments =&#xA;    &#x27;-i $inputVideo -i $inputWatermark -filter_complex overlay=10:10 -codec:a copy $outPath&#x27;;&#xA;&#xA;&#xA;final int rc = await FlutterFFmpeg().execute(arguments);&#xA;assert(rc == 0);&#xA;print("outPath $outPath");&#xA;&#xA;uploadFile(outPath, "gallery");&#xA;</void>

    &#xA;

    }

    &#xA;

    Thanks

    &#xA;

  • ffmpeg joinnig videos in php linux

    28 octobre 2013, par user2226181

    I am trying to add joining videos with no audio in ffmpeg php using linux operating system. My code is this :

    cat output_1.mp4 output_2.mp4 output_3.mp4 output_4.mp4 > final.mp4

    It is giving me an output of final.mp4 in result but there is a problem in the final.mp4 there is only first video which is output_1.mp4 in final video, the other videos are not being concatenate. Please help me in this case.

    Thanks

  • ffmpeg shared libraries setup on visual studio 2013

    19 décembre 2017, par Hyun Jung

    Setting up ffmpeg shared libraries that are downloaded from ffmpeg zenaroe (https://ffmpeg.zeranoe.com/builds/) for windows_64bit. The IDE is VS2013.

    I downloaded dev and shared build for windows 64bit.

    And followed steps like bellow but when building, linker error happens. The object file is created so compiling seems done. But there seems to be a problem finding referenced functions at the linking stage.

    1. Create win32 project and main.cpp
    2. Copy ffmpeg_dev’s include and lib folders to solution directory.
    3. Open project properties and add the include dir and the lib dir.
    4. Add lib names to linker input.
    5. Build

      main.cpp

      extern "C"{
      #include
      }
      int main(void){

         av_register_all();

         return 0;
      }

    The linker error is :

    LNK2019 unresloved external symbol _av_register_all referenced in function _main.