Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (24)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

Sur d’autres sites (2043)

  • h264 : add MVCD to the list of High profiles in SPS

    17 février 2014, par Vittorio Giovara
    h264 : add MVCD to the list of High profiles in SPS
    

    Also comment all previous profiles.

    • [DBH] libavcodec/h264_ps.c
  • doc/examples/transcoding : Use the decoders pixel format if the encoder does not list...

    28 février 2016, par Michael Niedermayer
    doc/examples/transcoding : Use the decoders pixel format if the encoder does not list which are supported
    

    This affects rawvideo and wraped_avframe, no others are affected atm

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] doc/examples/transcoding.c
  • ffmpeg to concat list of videos without txt

    18 novembre 2023, par tee Swift

    iven been trying different ways to concat the list of videos called videoPaths but it doesnt work so i tried this way but it results in a zero byte file

    &#xA;

      mergeVideos() async {&#xA;    String commandToExecute = &#x27;-y -i ${videoPaths[0]} -i &#xA;    ${videoPaths[1]} -r 24000/1001 -filter_complex \&#x27;[0:v:0] &#xA;    [0:a:0][1:v:0][1:a:0]concat=n=2:v=1:a=1[out]\&#x27; -map \&#x27;[out]\&#x27; &#xA;    $outputPath&#x27;;&#xA;    print(commandToExecute);&#xA;    FFmpegKit.execute(commandToExecute).then((session) async {&#xA;      print(await session.getOutput());&#xA;    });&#xA;  }&#xA;

    &#xA;

    Ive also tried this but fails with return code 1

    &#xA;

    Future<void> concatenateVideos() async {&#xA;    try {&#xA;      String command = &#x27;-i ${videoPaths.join(&#x27; -i &#x27;)} -filter_complex concat=n=${videoPaths.length}:v=1:a=1 -y $outputPath&#x27;;&#xA;&#xA;      FFmpegSession session = await FFmpegKit.executeAsync(command);&#xA;&#xA;      ReturnCode? returnCode = await session.getReturnCode();&#xA;&#xA;      if (returnCode == ReturnCode.success) {&#xA;        print(&#x27;Concatenation completed successfully!&#x27;);&#xA;      } else {&#xA;        print(&#x27;Error during concatenation. FFmpeg return code: $returnCode&#x27;);&#xA;      }&#xA;    } catch (e) {&#xA;      print(&#x27;Error: $e&#x27;);&#xA;    }&#xA;  }&#xA;</void>

    &#xA;