Recherche avancée

Médias (0)

Mot : - Tags -/masques

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

Autres articles (41)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (5326)

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

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

  • ffmpeg multiple pipes with different filters and outputs

    3 janvier 2024, par diegoddox

    I'm trying to pipe multiple outputs to an s3 but so far it's only working if I tried with only one pipe as soon as I add more I get Could not write header (incorrect codec parameters ?): Broken pipe error.

    &#xA;

    aws s3 cp s3://bucket-name/original.mp4 - | \&#xA;  ffmpeg -f mp4 -i pipe:0 \&#xA;  -vf "scale=1280x720:flags=lanczos" -c:a aac -b:a 96k -movflags frag_keyframe&#x2B;empty_moov -f mp4 pipe:1 | aws s3 cp - s3://bucket-name/720.mp4 --region my-region \&#xA;  -vf "scale=854x480:flags=lanczos" -c:a aac -b:a 96k -movflags frag_keyframe&#x2B;empty_moov -f mp4 pipe:2 | aws s3 cp - s3://bucket-name/480.mp4 --region my-region \&#xA;  -vf "scale=640x360:flags=lanczos" -c:a aac -b:a 96k -movflags frag_keyframe&#x2B;empty_moov -f mp4 pipe:3 | aws s3 cp - s3://bucket-name/360.mp4 --region my-region \&#xA;  -ss 00:00:00 -t 3 -vf "fps=10,scale=720:-1" -movflags frag_keyframe&#x2B;empty_moov -f gif pipe:4 | aws s3 cp - s3://bucket-name/thumbnail.gif --region my-region&#xA;

    &#xA;

    Thanks in advance

    &#xA;