Recherche avancée

Médias (0)

Mot : - Tags -/api

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

Autres articles (79)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (14999)

  • 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

  • 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, live MPEG-TS demux & decode

    8 mai 2017, par NadavRub

    Environment

    • Ubuntu-14
    • C++
    • ffmpeg

    Use-case

    • Live SPTS is received via UDP by a 3rd party module
    • TS Packets are received iteratively
    • The TS Video (ES) should be decoded in minimal latency

    Considered Implementation

    • Upon TS packet reception, immediately push it to the TS demux
    • Once enough packets are received the video format is resolvable, create the video codec
    • Push each video packet into the video decoder
    • Once enough video packets were processed the video codec result a valid output frame

    Problem at-hand

    Can this be done w/ ffmpeg ?!?!, … using “avformat_open_input” mandate a file to read from… I need a way where I can iteratively push packets to the TS demuxer ( w/ minimal latency )…

    Does ffmpeg support the above mentioned use-case ? How ?