Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (59)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (4474)

  • Changed the local scoping of the window variable with this to prevent an obscure bug in IE7

    4 octobre 2012, par Laurent Goderre

    m colorbox/jquery.colorbox.js Changed the local scoping of the window variable with this to prevent an obscure bug in IE7 In some very rare occassions using this as the windows variable causes a memory leak in IE7.

  • I need assistance of making a automated script for ffmpeg [closed]

    18 décembre 2024, par user2614404

    Currently i use this script that GPT generated :

    


    ffmpeg -c:v av1_qsv -b:v 0 -global_quality 20 -preset veryslow -look_ahead 64 -c:a copy -c:s copy G:\1ARC-movies\A-View-to-a-kill.mkv -i Y:\media\Movies\A_VIEW_TO_A_KILL_t05.mkv

    


    But sadly GPT being gpt, it hallucinates answers, and none of it's deeper automation code scripts were working when it made the scripts for a .ps1 script file.

    


    And as i find most of the docs quite overwhelming, i need help to simplify what i need. As i learn best when i get explained what i currently try to do, and not every variable ffmpeg can do.

    


    what i want the script to do is :

    


    1 : convert movies with AV1_QSV with "veryslow", as that's apparently from what i've read up being the best it can do

    


    2 : Global quality as close to 50 as possible (smaller, the better), as 20-6 gave the same range of percentage of 97% VMAF score, 22 gave 95%, so 20 is the largest number i can go, as VMAF via NMKODER reported any higher number was sub 97%.

    


    3 : Give it a main folder for movies and shows to scan, and convert all the media in there to their respective subfolders to a designated output folder.

    


    2 : Automatic crop detection, as some crops it to a 21:9 ratio, others has very small letterboxes. As GPT's code for that attempt for some reason used cpu instead of arc's quicksync.

    


    As this will be ran from powershell, and it's to replace my plex library, by transcoding all movies and shows, starting with the least watched ones/shows that my family has seen, as then those will be unavailable for them until unraid 7 is out of beta to read intel arc for av1.

    


  • Local file creation of ffmpeg hls http stream

    10 juillet 2018, par Emilian

    After researching all the options for ffmpeg hls streaming and setting it up for uploading to a http server i encountered a problem, ffmpeg also creates local files for the segment/playlist in the current working directory.

    What im trying to achieve is upload to a server and serve the segments and playlist from memory and not from disk. Tried setting a http url for segments like this :

    ffmpeg -re -i filter_test.ts -f hls -hls_segment_filename http://localhost:3000/segment/playlist_%03d.ts -method PUT http://localhost:3000/segment/playlist.m3u8

    but that also didnt work.

    Is there any way to stop ffmpeg from creating local files for the hls stream and only upload them to the server ?

    In the logs it says

    [hls @ 00000274041104e0] Opening 'http://localhost:3000/segment/playlist_000.ts' for writing
    [http @ 00000274046a2fa0] request: POST /segment/playlist_000.ts HTTP/1.1

    but nothing about writing it to a file.