Advanced search

Medias (21)

Tag: - Tags -/Nine Inch Nails

Other articles (99)

  • MediaSPIP 0.1 Beta version

    25 April 2011, by

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

  • Amélioration de la version de base

    13 September 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • MediaSPIP v0.2

    21 June 2013, by

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

On other websites (11851)

  • Disappearing modules of Node.js

    16 April 2019, by WearponiX

    My program needs some node.js modules, but when I install them manually - they disappear.

    I tried npm install ffmpeg-binaries and npm install decompress-tarxz, got a huge log full of errors. I tried to install them manually, then ran npm i and they disappeared from node_modules folder.

    https://pastebin.com/7kA7cNFM
    here is what I get in CMD after installing

    https://pastebin.com/7kUGNVYa
    and here is a full log

    Is there a way to install decompress-tarxz and ffmpeg-binaries?

    UPD:
    Solved that just by deleting package.json

  • How To apply video filter for Opencv VideoCapture in C++

    23 February 2021, by 하형욱

    I am using ffmpeg command for recording movie from webcam Device

    


    ffmpeg -f dshow -i video="USB Video Device" -vf scale=in_range=full d:/video.mp4


    


    and I want to apply option openCV library in C++.
But I don't know apply "-vf scale=in_range=full" option in code. please help me

    


    cv::VideoCapture m_videoCapture;
m_videoCapture.open(3); // 3 is device ID = USB Video Device 
m_videoCapture.set(CV_CAP_PROP_FRAME_WIDTH, 1920);
m_videoCapture.set(CV_CAP_PROP_FRAME_HEIGHT, 1080);
m_videoCapture.set(CV_CAP_PROP_FPS, 30.00);
// Set vf(VideoFilter) here ? whow?
if (!m_videoCapture.isOpened())
{
    ::MessageBox(NULL, "WebCam Device could not be opened succesfully", "CAM", MB_OK);
    return false;
}
return true;

cv::Mat frame;
while (char(cv::waitKey(100)) != 'q')
{
    m_videoCapture >> frame;
    // shoud I write code here for applying videofilteR?

    if (frame.empty()) break;
}


    


  • FFmpeg will not run from php

    15 March 2015, by user2392940

    This is a live server i am on a Windows 2008 Web Edition R2 server with IIS7.

    I have tried all of this locally and it works perfectly. At first i thought this may have been a permisson issue i gave all ffmpeg folders and output folders full control. I also checked the php ini file to make sure exec is enabled.

    I was intially running the exec() function i later changed it to the system() function to see what ffmpeg was outputting. With the system() function it returns the error "Acess is denied". All of my research points to a IIS setting or Application Pool not having the correct permission. Any help would be much appreciated.

    FFmpeg location: C:\ffmpeg\bin\ffmpeg.exe

    I have been working on this for nearly a week even my server provider has no answer on why ffmpeg will not run from php. I believe this is a little deeper than full paths. It’s obviously a permission problem but the question is where is the permission problem?

    It also seems that no .exe file can be executed from php.

    system ("$ffmpeg -i yourvideo/.mp4 -threads 1 -ss 20 -b 10k  -s 240x180 -vf fps=fps=1/20 -vframes 12 -aspect 4:3 thumbs/yourvideo/yourvideo.%01d.jpg 2>&1");