Recherche avancée

Médias (91)

Autres articles (41)

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

  • Hard subbing subtitles with one command in Ubuntu FFmpeg [closed]

    28 novembre 2022, par Ahmad moosavi

    I need a command that when it is executed, you can paste the subtitles to the video files. This operation must be hard sub and include all the videos in a folder.

    


    Example

    


    video 1
ass1

    


    video2
ass2

    


    video3
ass3

    


    With one command, hard sub all the videos above

    


    I need a single hard sub command, I need a collective hard sub with FFmpeg

    


    Maybe this issue can be solved with a spec script, I don't know

    


  • crtmpserver error, appselector can be a final destination

    29 mai 2015, par user2366736

    I’m trying to setup a CRTMP serve by using its script run and its default script crtmpserver.lua. my os is centos6, and kenerl version 2.6.32.

    The server start ok, showes
    /crtmpserver/src/crtmpserver.cpp:267 GO ! GO ! GO !

    But when i use ffmpeg to push a flv stream, using the command
    ffmpeg -re -i test.flv -acodec copy -vcodec copy -f flv rtmp ://localhost:1935/appselector/room1

    it shows the error
    RTMP_ReadPacket, failed to read RTMP packet header
    rtmp ://localhost:1935/appselector/room1 : Operation not permitted

    and the crtmpserver shows the following error

    /applications/appselector/src/rtmpappprotocolhandler.cpp:66 appselector can be a final destination

    /thelib/src/protocols/rtmp/basertmpprotocol.cpp:1049 Unable to send rtmp message
    to application

    /thelib/src/netio/epoll/tcpcarrier.cpp:89 Unable to signal data available

    /thelib/src/netio/epoll/iohandlermanager.cpp:130 Handlers count changed : 11->10 IOHT_TCP_CARRIER

    /thelib/src/protocols/protocolmanager.cpp:45 Enqueue for delete for protocol [IR(3)]

    /thelib/src/application/baseclientapplication.cpp:246 Protocol [IR(3)] unregistered from application : appselector

    Does the default lua config has some wrong ?

  • Trying to pickup mp4 & srt files in a dir and combine them using one script

    5 décembre 2022, par David Stammers

    Using this code works fine :

    


    ffmpeg -i input.mp4 -filter:v subtitles=subtitle.srt -c:a copy -c:v libx264 -crf 22 -preset veryfast output.mp4


    


    Trying to batch the operation gives errors :

    


    ls | Where { $_.Extension -eq ".mp4" } | ForEach {

.\ffmpeg.exe -i $_.Name -filter:v subtitles=$_.Name.Replace(".mp4", ".srt") -c:a copy -c:v libx264 -crf 22 -preset veryfast $_.Name.Replace(".mp4", "WithSubs.mp4") 

}


    


    Error :

    


    


    Output file #1 does not contain any stream
an empty file is made called ".mp4"