Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

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

Autres articles (103)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

  • 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

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (7408)

  • lavc/mpegvideo_parser : improve exporting field-coding information

    30 septembre 2023, par Anton Khirnov
    lavc/mpegvideo_parser : improve exporting field-coding information
    

    * export AVCodecParserContext.picture_structure.
    * when there are two field pictures in the packet, set
    the interlacing parameters accordingly :
    * repeat_pict=1 and picture_structure=FRAME to indicate 2 fields
    * field_order to indicate the first field of the two

    • [DH] libavcodec/mpegvideo_parser.c
  • Android ffmpeg usage - I want reduce the output apk file size - Iam Using only for image to webp conversion

    3 juin 2022, par Fazl Faisal

    FFMPEG - Android Only using for jpg to webp conversion. But the apk file size is very big.
I want know where rules want to change for reducing the APK file size. Please Help

    


        List<string> commandList = new LinkedList&lt;>();&#xA;    commandList.add("-i");&#xA;    commandList.add(imageFilePath);&#xA;    commandList.add("-vcodec");&#xA;    commandList.add("webp");&#xA;    commandList.add("-loop");&#xA;    commandList.add("0");&#xA;    commandList.add("-pix_fmt");&#xA;    commandList.add("yuv420p");&#xA;    commandList.add(outputPath);&#xA;&#xA;    String[] cropCommand  = commandList.toArray(new String[commandList.size()]);&#xA;&#xA;    FFmpegSession session = FFmpegKit.execute(cropCommand);&#xA;&#xA;    if (ReturnCode.isSuccess(session.getReturnCode())) {&#xA;&#xA;        fp.ToastDebug("Success");&#xA;&#xA;    } else if (ReturnCode.isCancel(session.getReturnCode())) {&#xA;&#xA;        fp.ToastDebug("CANCEL");&#xA;&#xA;    } else {&#xA;&#xA;        fp.AlertDebug("ffmpeg: "&#x2B; String.format("Command failed with state %s and rc %s.%s", session.getState(), session.getReturnCode(), session.getFailStackTrace()));&#xA;        fp.Log("ffmpeg: "&#x2B; String.format("Command failed with state %s and rc %s.%s", session.getState(), session.getReturnCode(), session.getFailStackTrace()));&#xA;&#xA;    }&#xA;</string>

    &#xA;

  • How to impose PNG stream over exist video using ffmpeg and image2pipe ?

    16 avril 2019, par Михаил Магомедов

    I reproduce the steps of this article with nodeJs :

    https://blog.scwu.io/rendering-canvas-to-mp4-using-nodejs/

    I not need to generate a new video from the stream of png pictures, me need impose png stream over exist video, please tell me how to do it ?

    var recorder = spawn("ffmpeg", [
       "-y", "-f", "image2pipe",
       "-vcodec", "png", "-r", "60",
       "-i", "-", "-vcodec", "h264",
       "-r", "60", "output.mp4"
    ]);

    for(var i = 0; i&lt;100; i++){
       ...some ctx processing
       let url = canvas.toDataURL(),
           data = atob( url.substring(url.indexOf("base64") + 7) );

       recorder.stdin.write(data, "binary");
    }

    recorder.stdin.end();