Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (41)

  • 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 (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • 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 (7225)

  • 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

    


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


    


    Ive also tried this but fails with return code 1

    


    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;

  • 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
  • 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