Recherche avancée

Médias (91)

Autres articles (83)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

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

  • avfilter/vf_fps : Work around msvc (c99wrap) build failure

    26 août 2013, par Pavel Koshevoy
    avfilter/vf_fps : Work around msvc (c99wrap) build failure
    

    c99wrap choked on initialization of .dbl start_time option with
    AV_NOPTS_VALUE : Unable to parse int64_t as expression primary

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavfilter/vf_fps.c
  • Video Processing in background with work manager using ffmpeg

    24 novembre 2020, par Naseer Attari

    The problem comes when during the video processing user closes the application himself from the task manager then its processing stops.

    &#xA;

    I am working on video file processing in android using FFMpeg, which is working perfectly but when I do close the application during processing from task manager then video processing has stopped working even I added all the work in work manager.

    &#xA;

        @Override &#xA;public Result doWork() {&#xA;        shellCommand = new ShellCommand();&#xA;        ffmpegBinary = new String[] {&#xA;            FileUtils.getFFmpeg(context).getAbsolutePath()&#xA;        };&#xA;        command = concatenate(ffmpegBinary, command);&#xA;        CommandResult commandResult = getCommandResult(command);&#xA;        if (command`enter code here`Result.success) {&#xA;            onSuccess(videoPath);&#xA;        } else {&#xA;            onFailure(videoPath);&#xA;        }&#xA;    }&#xA;    //getCommandResult&#xA;    private CommandResult getCommandResult(String[] command) {&#xA;        try {&#xA;            process = shellCommand.run(command, null);&#xA;    &#xA;            if (process == null) {&#xA;                return CommandResult.getDummyFailureResponse();&#xA;            }&#xA;            checkAndUpdateProcess();&#xA;            return CommandResult.getOutputFromProcess(process);&#xA;        } catch(Exception e) {} finally {&#xA;            Util.destroyProcess(process);&#xA;        }&#xA;        return CommandResult.getDummyFailureResponse();&#xA;    }&#xA;

    &#xA;

    As far as I can tell, when the application closes from the background then the parent process destroys it and is destroying all of its sub-process too, FFMpeg is using the android process to execute the command and check the video file status during video processing.

    &#xA;

    Looking forward to hear from you.&#xA;Thanks

    &#xA;

  • ffmpeg concat video doesn't work on phones

    1er janvier 2015, par Виктор Пахомов

    I`m trying to concat my 2 videos (one of them a watermark video). I created a simple batch script.

    SET PATH=%PATH%;D:\downloads\ffmpeg-20141226-git-7c210c4-win32-static\ffmpeg-20141226-git-7c210c4-win32-static\bin
    DIR/B/O:N/S D:\videos > D:\filename.txt
    for /f %%i in (D:\filename.txt) do (
       ffmpeg -i %%i -c copy -acodec libvo_aacenc -vbsf:v h264_mp4toannexb -f mpegts %%i.ts
       ffmpeg -i "concat:D:\videomark\copy.ts|%%i.ts" -c copy -acodec libvo_aacenc  -b:v 256k -bufsize 256k -vbsf:v aac_adtstoasc D:\gdvideo\%%~ni.mp4
       del /f /s /q D:\videos\*.ts
       SLEEP 200
    )

    The video works fine on a PC and doesn’t work on my phone (as an example nokiaX2).

    What could be the problem ?