Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (23)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

Sur d’autres sites (5374)

  • simple loop saying no file found terminal

    29 mai 2021, par Frodo Baggins

    I have this command which I am trying to find all movie files in all directories, convert them, and remove the original, within all sub directories. It displays the file names but it returns no such file found.

    


    for oggfile in "$(find . -iname '*.mp4' -or -iname '*.avi' -or -iname '*.mov')"
do
ffmpeg -i ${oggfile} -b:a 320000 -vcodec libx264 ${oggfile}_newCompressed.mp4
rm $oggfile
done ```



    


  • OpenCV : VideoCapture not working with DSHOW backend

    12 juin 2017, par nji9

    I built OpenCV (with mingw 4.9.2 @ Win7Prof64) with
    CMake switches for WITH_FFMPEG and WITH_DSHOW turned on.
    When I access a movie file with VideoCapture (fileName) works fine (it uses ffmpeg backend then).

    But VideoCapture (fileName, cv::CAP_DSHOW) doesn’t work
    (isOpened() returns false).

    What is missing/ what do I do wrong ?
    Are there any kind of dshow libs/ dlls needed ?

  • FFMPEG Extra just codec information

    18 juin 2014, par Jim

    I am planning on using FFMPeg with Java, to detect a specific codec and convert this to another. Using the FFMpeg line -

       ffprobe -v quiet -print_format json -show_streams "input.avi"

    I can print off all of the stream information of the video, but this includes video information, audio information, all metadata, all tags and other information which I just don’t need.

    Question : Is it possible to launch an FFMpeg command which only returns the video codec, so I don’t have to wave through unnecessary information ?