Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (89)

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

  • 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

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (8901)

  • How to downsample all the videos in a folder using ffmeg

    8 novembre 2020, par amarykya_ishtmella

    I have a folder with videos of different types (mainly .MTS or .mov, but strong possibility that in future there will be other types). I want to downsample it. This is the code that I won't, but it's not working.

    


    from pathlib import Path
import subprocess, os
import cv2

path= '/Volumes/Element/videos/'

for filename in os.listdir(path):
    if filename.endswith(".MTS") or filename.endswith(".mp4"): 
        os.system("ffmpeg -i{0} -vf scale=500:-2 output%p.MTS".format(filename))
        continue
    else:
       os.system("ffmpeg -i{0} -vf scale=500:-2 output%p.MTS".format(filename))
       continue


    


  • Splitting videos slowly using FFMpeg in android

    13 mai 2017, par Krish

    Hi i am using FFMpeg below command1 for splitting video files in android,I am facing problem here when i upload more than 40Mb file taking too long time for splitting the files

    Using command2 videos are splitting very fastly but splitting files size count more than main file size

    Is there no way for splitting videos fastly with not increasing splitting videos count size compare to main file,Can some one help me please.

    Command1 :-

           String[] cmd = {"-ss", "" + "0", "-y", "-i", "inputFile", "-t", "" + "5", "-s",
                   "width" + "x" +
                           "height", "-vcodec", "mpeg4", "-b:v",
                   "2097152", "-b:a", "48000", "-ac", "2", "-ar", "22050", Environment.getExternalStorageDirectory() +
                   "/FFMpeg" + "/" + outPutFile + "" + indexValue + "" + "." + "mp4"};

    Command2 :-

           String cmd[] = new String[]{"-i","inputfile", "-ss", "" + start, "-c", "copy", "-t", "" +
                   end, "-acodec", "copy", "-vcodec", "copy",
                   Environment.getExternalStorageDirectory() +
                           "outPutFile.mp4"};
  • How to join two videos into one stream using ffmpeg

    12 janvier 2016, par Andrey Prokhorenko

    I am new to ffmpeg, and I try to join two videos and get a video stream. I found a command :

    ffmpeg -i input0.avi -vf "movie=input1.avi [in1]; [in]pad=640*2:352[in0]; [in0][in1] overlay=640:0 [out]" out.avi

    but at the end we get a file "out.avi" and I need a video stream. Is there any way to achieve this ?