Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (111)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • 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

Sur d’autres sites (6489)

  • Fix the handling of older 120 based deltas.

    14 décembre 2013, par brandonaaron
    Fix the handling of older 120 based deltas.
  • How to scale watermark based on video resolution in android using FFmpeg command ?

    16 février 2023, par Ravi Sorathiya

    I want to scale the watermark size based on the given video resolution. but this cmd scales the watermark without respect to the original video.

    


    I want to scale the watermark based on the resolution of the video. if
the video is in high resolution then the watermark will adjust that accordingly. visa versa in lower resolution it will scale accordingly.

    


    please suggest me FFmpeg cmd the dynamically cmd that helps to scale the watermark based on video's resolution

    


    val cmd = arrayOf(
            "-y",
            "-i",
            sourcePath,
            "-i",
            watermarkImagePath,
            "-filter_complex",
            "[1][0]scale2ref=w=oh*mdar:h=ih*0.06[logo][video];[video][logo]overlay=${position}",
            "-map",
            "0:a",
            "-c:v",
            "libx264",
            "-crf",
            "$bitrate",
            "-preset",
            "ultrafast",
            outputLocation.path
        )


    


  • Mjpeg text based subtitle extraction/replay

    2 décembre 2013, par user3058117

    I have an MJPEG based avi file that I cannot replay satisfactorily.

    The video I can correctly replay in FFPlay but i cannot replay or demux the text based subtitle stream.

    The file contains time/date stamps in the subtitles embedded as ascii text which i can see between the video packets (when viewed in a hex reader).

    FFmpeg cannot identify the subtitle codec b7t can see that there is a subtitle stream.

    Ive tried a number of filter combinations using GraphStudioNext. I found a couple of working solutions (when previewed in GraphStudio when served to avisynth the subtitles had disappeared again. I checked the filtergraph and the pin out from the avi splitter had misteriously disconnected. I cannot find a way out of this.

    Does anyone have any suggestions on how i might demux the subtitle stream(short of writing a converter to extract the text to srt based on the packet timing) ?

    This is my first post so apologies if i havent observed etiquette.