Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (31)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (5851)

  • FFmpeg android execute

    19 mai 2015, par Majid Poureftekhari

    On windows I could cut a video with below code with ffmpeg.exe

    Can’t use ffmpeg in android.
    I used gradle to grab ffmpeg in my app.

    dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.github.hiteshsondhi88.libffmpeg:FFmpegAndroid:0.2.5'
    }

    I have these lines in my method

    VideoIn = getInternalDirectoryPath() + "/Download/Ab.mp4";
    VideoOut = getInternalDirectoryPath() + "/Download/Ab1.mp4";

    try {
    ffmpeg.execute("ffmpeg -i " + VideoIn + " -ss 00:00:03 -c:v libx264 -crf 17 -t 00:00:5 " + VideoOut + " -y",null);
    }
    catch (FFmpegCommandAlreadyRunningException e) {
    e.printStackTrace();
    }

    Shows this error : Error running exec(). Command : [/data/data/com.videoeditor.myname.myapp/files/ffmpeg, ffmpeg, -i, /storage/emulated/0/Download/Ab.mp4, -ss, 00:00:03, -c:v, libx264, -crf, 17, -t, 00:00:5, /storage/emulated/0/Download/Ab1.mp4, -y] Working Directory : null Environment : null

    What’s wrong with this method ? Thanks for your help

  • ffmpeg to ffserver works, but cannot view

    13 avril 2017, par nix

    I have a generic windows webcam that I am trying to broadcast

    ffmpeg -f vfwcap -I 0 -vcodedc libx264 -tune zerolatency-b 900k -f mpegts udp://domain.com:8090

    which appears error free.
    I can see plenty of traffic using tcpdump on port 8090

    ffserver is configure on a FreeBSD server with no firewall configured

    # cat /usr/local/etc/ffserver.conf| egrep -v "(^#.*|^$)"
    HTTPPort 8090
    HTTPBindAddress 0.0.0.0
    MaxHTTPConnections 2000
    MaxClients 1000
    MaxBandwidth 1000
    CustomLog -
    <feed>
    File /tmp/feed1.ffm
    FileMaxSize 200K
    ACL allow 98.124.117.129
    </feed>
    <stream>
    Feed feed1.ffm
    Format mpeg
    AudioBitRate 32
    AudioChannels 1
    AudioSampleRate 44100
    VideoBitRate 64
    VideoBufferSize 40
    VideoFrameRate 3
    VideoSize 160x128
    VideoGopSize 12
    ACL ALLOW all
    </stream>
    <stream>
    Feed feed1.ffm
    Format asf
    VideoFrameRate 15
    VideoSize 352x240
    VideoBitRate 256
    VideoBufferSize 40
    VideoGopSize 30
    AudioBitRate 64
    StartSendOnKey
    </stream>
    <stream>
    Format rtp
    File "/tmp/feed1.ffm"
    </stream>
    <stream>
    Format status
    ACL allow localhost
    ACL allow 192.168.0.0 192.168.255.255 98.124.117.129 0.0.0.0
    </stream>
    <redirect>
    URL http://www.ffmpeg.org/
    </redirect>

    The port is live

    # netstat -an|grep 8090
    tcp4       0      0 *.8090                 *.*                    LISTEN

    But when I try to connect via VLC to the ffserver

    rtsp://persiaspalace.us:8090/feed1.ffm

    connection fails.
    There are no networking issues

    How do I configure a webcam broadcast from ffmpeg to ffserver for viewing via VLC (or similar) ?

  • Where can I find high-quality videos for testing video processing ?

    15 novembre 2012, par Workman

    Aside from Big Buck Bunny, Sintel, and Elephant's Dream, what are other high-quality and free sources for high quality video ?

    I'm using these videos internally to test video transcoding options and am not public redistributing. Any suggestions for content that falls under this category ?