Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (74)

  • 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 (5915)

  • compile ffmpeg with android ndk r5b

    7 janvier 2013, par null

    compile ffmpeg with android ndk r5b.

    ffmpeg 0.6.1

    android ndk r5b

    cygwin 1.7

    build reference url : http://www.cnblogs.com/scottwong/archive/2010/12/17/1909455.html

    but, ffmpeg ./configure result error ! (below config.err file)

    check_cc
    BEGIN /tmp/ffconf.GlDiY1P8.c
       1   int main(void){ return 0; }
    END /tmp/ffconf.GlDiY1P8.c
    /android-ndk-r5b/toolchains/arm-eabi-4.4.0/prebuilt/windows/bin/arm-eabi-gcc -fPIC -DANDROID -c -o /tmp/ffconf.1kQLpGaU.o /tmp/ffconf.GlDiY1P8.c
    arm-eabi-gcc.exe: /tmp/ffconf.GlDiY1P8.c: No such file or directory

    arm-eabi-gcc.exe: no input files

    C compiler test failed.

    so, i just try test code.

    // test.c code
    int main(){
     return 0;
    }

    /android-ndk-r5b/toolchains/arm-eabi-4.4.0/prebuilt/windows/bin/arm-eabi-gcc -fPIC -DANDROID -c -o ./test.o ./test.c

    ok !!!! no problem.

    but,
    cp ./test.c /tmp (copy to /tmp)

    /android-ndk-r5b/toolchains/arm-eabi-4.4.0/prebuilt/windows/bin/arm-eabi-gcc -fPIC -DANDROID -c -o ./test.o /tmp/test.c

    arm-eabi-gcc.exe: /tmp/test.c: No such file or directory
    arm-eabi-gcc.exe: no input files

    fail !!!
    difference is only file path. /tmp directory exist, and permission is right. /home/test.c is same result.

    what's wrong ?

  • Get length of a video using regex and ffmpeg

    10 mars 2016, par David542

    From the following ffmpeg -i output, how would I get the length (00:35)—

    $ ffmpeg -i 1video.mp4

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/Users/david/Desktop/1video.mp4':
     Metadata:
       major_brand     : isom
       minor_version   : 1
       compatible_brands: isomavc1
        creation_time   : 2010-01-24 00:55:16
     Duration: 00:00:35.08, start: 0.000000, bitrate: 354 kb/s
       Stream #0.0(und): Video: h264 (High), yuv420p, 640x360 [PAR 1:1 DAR 16:9], 597 kb/s, 25 fps, 25 tbr, 25k tbn, 50 tbc
       Metadata:
         creation_time   : 2010-01-24 00:55:16
       Stream #0.1(und): Audio: aac, 44100 Hz, stereo, s16, 109 kb/s
       Metadata:
         creation_time   : 2010-01-24 00:55:17
    At least one output file must be specified
  • Getting video dimension from ffmpeg -i

    18 décembre 2015, par David542

    How would I get the height and width of a video from ffmpeg’s information output. For example, with the following output —

    $ ffmpeg -i 1video.mp4
    ...

    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/Users/david/Desktop/1video.mp4':
     Metadata:
       major_brand     : isom
       minor_version   : 1
       compatible_brands: isomavc1
       creation_time   : 2010-01-24 00:55:16
     Duration: 00:00:35.08, start: 0.000000, bitrate: 354 kb/s
       Stream #0.0(und): Video: h264 (High), yuv420p, 640x360 [PAR 1:1 DAR 16:9], 597 kb/s, 25 fps, 25 tbr, 25k tbn, 50 tbc
       Metadata:
         creation_time   : 2010-01-24 00:55:16
       Stream #0.1(und): Audio: aac, 44100 Hz, stereo, s16, 109 kb/s
       Metadata:
         creation_time   : 2010-01-24 00:55:17
    At least one output file must be specified

    How would I get height = 640, width= 360 ? Thank you.