Recherche avancée

Médias (1)

Mot : - Tags -/publier

Autres articles (97)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (6783)

  • How to include constrast+saturation filter after vidstabtransform ?

    5 décembre 2019, par esdoublelef

    In a previous question, I got help in fixing the code as stated below. However, I realize that my output file is slightly lower in contrast and saturation.

    Is there any way to append a contrast+saturation filter to the output stabilized file ?

    '" @For %%A In (*.mov)Do @(
       ffmpeg -i "%%A" -vf vidstabdetect=shakiness=8:accuracy=15:stepsize=6:mincontrast=0.4:show=2 -y -an -f null -
       ffmpeg -i "%%A" -vf vidstabtransform=smoothing=15:input="transforms.trf":interpol=linear:crop=black:zoom=0:optzoom=1,unsharp=5:5:0.8:3:3:0.4 -vcodec libx264 -tune film -y "%%~nAstabilized.mp4"
    )

    pause '"
  • Is there a built-in audio preprocessing within Android OS ?

    29 août 2022, par Larry lu

    I am running a dev team to build an Android application the major feature is to record a user's voice and merge it into a long movie. It's a dub film application.

    


    One struggle thing to my dev team is whether the Android OS pre-processes the recorded audio file. because we want the very original audio data from the built-in Microphone.
If there is a built-in pre-processing inside of Android OS that keeps updating some data of the recorded audio file, we want to know what is changed. We can't find any official post from Android speaking about it but would like to confirm from a professional.

    


    Many thanks

    


  • ffmpeg memery leak with av_read_frame

    31 mai 2016, par Link

    I use av_read_frame in two ways below :

    1.

    for(;;){
           if (av_read_frame(pFormatCtx, packet) >= 0){
               av_packet_unref(packet);
           }
       }

    2.

      for(;;){
           packet = av_packet_alloc();
           if (av_read_frame(pFormatCtx, packet) >= 0){
               av_packet_free(&packet);
           }
       }

    Noting to do but read file and call free methods with FFMPEG APIs.
    Both have a memery leak problem.(1.72GB film file got 300MB memory increment)
    Anyone got rosulation ?