Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (29)

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

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (3484)

  • iPhone video PHP upload. Windows to HTML5 tag

    21 août 2012, par zeshin

    As those of you with an iPhone know, the iCloud uploads all pictures and videos taken on the iPhone to the cloud and, thereafter, your home PC.

    I am uploading videos to my web page through a PHP function, which are then displayed as embedded HTML5 videos with the tag. The problem I am running into is that videos taken on the iPhone in portrait are showing up on both my PC and website in landscape view.

    Due to the fact that uploads come from multiple sources, I need a sever-side solution to recognize the orientation of the video and rotate it as needed.

    Does anyone know of a way to accomplish this without using additional plugins such as ffmpeg ?

  • how to build built-in video editor using HTML, CSS, JS ? [closed]

    29 avril 2021, par Ayca Solmaz

    I'm trying to build a website with a built in video editor where the user would upload a video and the video would just show up on the video editor and from there they can trim the video (let's say from 1:24-2:30)

    


    I have basic knowledge on FFMPEG but I was looking for a way to do this with Javascript. I have a slider where you can select a range, it's just the trimming part I'm struggling with. I have set up UI's as well where there're two sliders to select the range and a trim button. I'd appreciate any help at this point.

    


  • php and ffmpeg from command line in windows - not working, nothing returns

    24 août 2015, par user3725395

    I’m trying to execute ffmpeg within a website and it never output’s a file, nothing return’s, I have tried it with parameters -version and that works fine.
    I can copy and paste the main command into dos and it also works fine.

    I’m stuck, I have tried many things including shell_exec but to no avail, nothing comes back other than array(0) int(0). help ?

    //$cmd = 'C:\ffmpeg.exe ffmpeg -version';
    $cmd = "C:\ffmpeg.exe -i C:\1.mp3 -i C:\2.mp3 -filter_complex amerge -c:a libmp3lame -q:a 4 C:\out.mp3";
    echo exec($cmd, $o, $v);
    var_dump($o);
    var_dump($v);