Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (63)

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

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (6157)

  • want to stream mobile camera using ffserver and ffmpeg

    6 janvier 2017, par Vinay Pandya

    First i will tell you my requirement than i will tell you what i have done.

    i am noob in media streaming i am learning and i am very confused about it.

    basically i want to do following thing

    1 : mobile app will stream video on server through URL (which is on my laptop)
    2 : My laptop should run ffserver/ffmpeg which store video stream which is coming from mobile app and allow other client to watch it (here i am talking about VLC as client).

    so this is my requirement.

    i ham running ffserver on my laptop

    my ff server config is like :

    HTTPPort 8090
    HTTPBindAddress 0.0.0.0

    RTSPPort 8091
    RTSPBindAddress 0.0.0.0


    MaxHTTPConnections 2000
    MaxClients 1000
    MaxBandwidth 1000
    CustomLog -

    #NoDaemon

    <feed>
       File /tmp/feed1.ffm
       FileMaxSize 200K
       ACL allow 127.0.0.1
    </feed>

    # if you want to use mpegts format instead of flv
    # then change "live.flv" to "live.ts"
    # and also change "Format flv" to "Format mpegts"
    <stream>
       Format flv
       Feed feed1.ffm

       VideoCodec libx264
       VideoFrameRate 30
       VideoBitRate 512
       VideoSize 320x240
       AVOptionVideo crf 23
       AVOptionVideo preset medium
       # for more info on crf/preset options, type: x264 --help
       AVOptionVideo flags +global_header

       AudioCodec aac
       Strict -2
       AudioBitRate 128
       AudioChannels 2
       AudioSampleRate 44100
       AVOptionAudio flags +global_header
    </stream>

    ##################################################################
    # Special streams
    ##################################################################
    <stream>
       Format status
       # Only allow local people to get the status
       ACL allow localhost
       ACL allow 192.168.0.0 192.168.255.255
    </stream>

    # Redirect index.html to the appropriate site
    <redirect>
       URL http://www.ffmpeg.org/
    </redirect>
    ##################################################################

    than i am adding following url to my mobile app to stream video.
    rtsp ://:8091/feed1.ffm
    my mobile app start streaming my mobile developer team said that.
    but i am not getting any log on ffserver, when i am stooping streaming the TEARDOWN request is comming

    [TEARDOWN] "rtsp://192.168.1.57:8091/feed1.ffm RTSP/1.0" 200 7034

    i have done this is so far, i dont know how to use ffmpeg with live streaming. please tell me some example for that.

    i am not able to watch that live stream on VLC client. also tell me what URL should i enter in VLC for streaming i have tried almost every url combination.

    and one more thing i want to do it with RTSP protocol.

    i think this info will help you to understand my requirement.

  • Converting video to frames using ffmpeg

    15 septembre 2015, par Alap Arslan

    I am using ffmpeg to convert video to frames by following command.

    ffmpeg -i Input.MP4 -vf fps=1/5 img%03d.jpg

    But i want to convert youtube video directly into frames. It gives error when i write like this.

    ffmpeg -i www.youtube.com/watch?v=qT4hN5o57hI -vf fps=1/5 img%03d.jpg

    please help me ?

  • Is variable resolution possible in MPEG-4 or Matroska ?

    29 août 2020, par Chris_F

    It's become increasingly common for movies to contain sections with varying aspect ratios. For instance, the movie The Dark Knight is is sometime 16:9 full frame, and at other times 2.40:1 with letter boxing. This is fine when viewed on a 16:9 (or even 4:3) screen, but if you try to watch it on a 2.40:1 screen you will get simultaneous horizontal and vertical letterboxes. Extremely undesirable.

    &#xA;

    Currently I use MPC-HC, which has a feature where it is able to analyze the video in real time, detect letter boxing, and dynamically crop the video. This works pretty well, but it's kind of an ugly solution. Are there any video formats that allow meta data like image resolution to change throughout the video ?

    &#xA;