Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (58)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (15688)

  • Auto detect rotation and rotate video accordingly with mencoder, handbrake cli or ffmpeg

    29 décembre 2012, par Andrew Barraclough

    I have found questions on rotating videos with mencoder and ffmpeg however I am after a fully automated solution.

    Can anybody help with this.

    I want to

    • Detect the video orientation
    • Rotate if needed
    • Reset the meta data on the video (otherwise watching on a iOS device will cause unwanted rotation)
    • Save video in desired format

    The reason for this is a wish to use the processed videos in a HTML5 video player. If I rotate without resetting the meta data iOS devices will read the meta and further rotate causing the video to be out by another 90 degrees.

  • Auto detect rotation and rotate video accordingly with mencoder, handbrake cli or ffmpeg

    7 février 2018, par Andrew Barraclough

    I have found questions on rotating videos with mencoder and ffmpeg however I am after a fully automated solution.

    Can anybody help with this.

    I want to

    • Detect the video orientation
    • Rotate if needed
    • Reset the meta data on the video (otherwise watching on a iOS device will cause unwanted rotation)
    • Save video in desired format

    The reason for this is a wish to use the processed videos in a HTML5 video player. If I rotate without resetting the meta data iOS devices will read the meta and further rotate causing the video to be out by another 90 degrees.

  • Auto overwrite created thumbnail of video file in php

    22 janvier 2015, par Winner

    I have successfully created thumbnail image of video file but I have some issue.This is my code for creating thumbnail of image :

       $ffmpeg = "C:\\ffmpeg\\bin\\ffmpeg";
       $videoFile = $_FILES["file"]["tmp_name"];

       $imageFile = "1.jpg";
       $size = "800x420";
       $getFromSecond = 25;
       $cmd = "$ffmpeg -i $videoFile -an -ss $getFromSecond -s $size $imageFile";
       if(!shell_exec($cmd))
       {
           echo "Thumbnail Created!";
       }
       else
       {
           echo "Error Creating Thumbnail";
       }

    With this code I got result 1.jpg as given. MY question is that when Second time I create the thumbnail for another video the previous one is replaced.What cant I do for this