Recherche avancée

Médias (0)

Mot : - Tags -/api

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (64)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • MediaSPIP v0.2

    21 juin 2013, par

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

Sur d’autres sites (15424)

  • How to properly open libvpx for encoding in via avcodec_open2() ?

    10 juin 2014, par Edison

    With a valid AVCodec and a valid AVContext, when calling avcodec_open2() EINVAL (-22, Invalid arguments) is returned, it turns out the EINVAL is triggered via

       ret = avctx->codec->init(avctx);
       if (ret < 0) {
           goto free_and_end;
       }

    inside avcodec_open2().

    The same code that I have right now can open mpeg4 and h264 just fine.

    Are there any special option parameters that has to be set (e.g. for h263, image size has to be multiples of certain numbers) to open libvpx codec ?

  • Separate Audio and Video in android

    13 février 2014, par Manoj

    I am beginner to Android application development,The aim of my project is to separate a audio and video from video file. after surfing in internet i came to know that, using FFmpeg we can do it.

    ffmpeg -i input.mkv # show stream numbers and formats
    ffmpeg -i input.mkv -c copy audio.m4a # AAC
    ffmpeg -i input.mkv -c copy audio.mp3 # MP3
    ffmpeg -i input.mkv -c copy audio.ac3 # AC3
    ffmpeg -i input.mkv -an -c copy video.mkv
    ffmpeg -i input.mkv -map 0:1 -c copy audio.m4a # stream 1

    separated video file wouldn't contain any audio it must be contain only video type.
    whether this option too possible in ffmpeg ?
    is any other alternative option there ?.

  • Batch Programming Looping ?

    13 mai 2013, par Michael Barth

    I'm not an expert in batch programming, my only skill is in C\C++. I'm not even sure how to go about this really.

    I've got a bunch of videos like Video1.mp4, Video2.mp4 (that's not their actual names, but they do have numbers indicating beginning and end)

    Basically I have this FFMPEG command that I can use to convert all of these to an aspect ratio of 16:10 that looks something like this :

    "ffmpeg -i "Section 1 Video 1.mp4" -aspect 16:10 OutSection 1 Video 1.mp4"
    "ffmpeg -i "Section 1 Video 2.mp4" -aspect 16:10 OutSection 1 Video 2.mp4"
    "ffmpeg -i "Section 2 Video 1.mp4" -aspect 16:10 OutSection 2 Video 1.mp4"

    Now instead of writing this command over and over again, is there anyway for me to substitute the numbers for actual variables ? I know that Section 1 ends at Video 27 and Section 2 ends at Video 26 and so on. Basically I need the loop to run 165 times so I don't need to write the command 165 times.

    Or is this beyond the scope of capability of a mere batch program ?