Recherche avancée

Médias (91)

Autres articles (33)

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

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

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (3960)

  • Move uploaded file or quick conversion ffmpeg php

    26 janvier 2016, par Ohmyholy

    I want to know which is more Recommended way of uploading videos in website.

    I am uploading videos on my server and doing a 240p conversion.

    Code

    move_uploaded_file($file['tmp_name'], $target);
    shell_exec($cmd);

    Where command is my ffmpeg command to do the conversion.

    Now my question is it necessary to do a move_uploaded_file or I can directly do a quick conversion I.e (run only shell_exec($cmd)) using the $file[’tmp_name’] ?

    What are performance concerns when thousands of people are running the script ?

    P.S each video will have different resolution 240p,480p,HD ETC

    SO what’s the best way to do ?

  • FFmpeg script to convert all existing files in directory

    5 avril 2015, par TopHi

    I have a video website where many of the videos have both an .flv and .mp4 version but not all of them, for example

    /files/videos/video1.flv
    /files/videos/video1.mp4

    I need a script that will convert all .flv files in to .mp4 files .
    I have about lets say 50k videos called with random numbers and digits so its not possible to convert them 1 by 1
    Here is a command that I useed and it works just fine.

    ffmpeg -i /videos/14277419524e6bd.flv -f mp4  -vcodec libx264 -preset slow -r 30 -b:v 300000 -s 1280x720 -aspect 1.7777777777778 -vf pad=0:0:0:0:black -acodec libfaac -ab 128000 -ar 22050  /videos/14277419524e6bd.mp4

    The script must process the conversations one by one and if possible to give me some input so I can know what is going on.

  • HTML5 mp4 video autoplay issue

    8 août 2018, par Fernando Guimarães

    I am doing a website that requires a 16s video to autoplay on the frontpage, pretty standard. But it has some issues, on firefox it tells me that the video could not be decoded, and on chrome autoplaying just works sometimes.

    The original video .mov (1Gbs) was converted with ffmpeg to .mp4 (30Mbs).

    ffmpeg -i 30389617-4k.mov out.mp4

    My HTML video code is the following :

    <video class="embed-responsive-item" src="assets/output.mp4" type="video/mp4" autoplay="autoplay" loop="loop"></video>

    And if helpful, my CSS :

    video {
       object-fit: fill;

       position: relative;
       z-index: 1;
       max-height: 100vh;
       width: 100%;
    }

    It’s a nodeJS project, the video is located inside /public/assets.
    Who can I fix this mess ? Is there any good practice I may be missing ?

    Regards