Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (63)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (10929)

  • Divide videos to sub videos by FFMPEG

    1er mars 2013, par seereen

    I have DVDs each one has 5 avi video ,,,, I am trying to divid these 5 avi to sub videos (at least 12 small avi videos) depending on the marker on some frames ...

    the problem is ... some time the new video contain frames from 2 original avi (for example : the sub video number 7 will have the last frames from original video 2 and the first frames from video 3)
    In this case my code crashed ! and Program received signal : EXC_BAD_ACCESS. error !!
    the problem happen in this function

    void write_video_frame(AVFormatContext *oc, AVStream *st, AVFrame *frame)
    in if (oc->oformat->flags & AVFMT_RAWPICTURE)  

    any idea why I got this problem ....
    I am using FFMPEG 0.11 and openCV 2.4.3 in OSx 10.6.8

  • tests/swscale : allow testing only unscaled convertors

    6 mars, par Niklas Haas
    tests/swscale : allow testing only unscaled convertors
    

    I need this to be able to test the new unscaled conversion code more quickly.
    We re-order the flags order to make 0 the first entry, so we don't set any
    flags when performing unscaled tests.

    • [DH] libswscale/tests/swscale.c
  • How to encode (ffmpeg x264) with continuous seek

    13 avril 2015, par ComputerVisioner

    I have a batch file that encodes video files from ’Source’ folder to ’Target’ folder.

    The batch file content is :

    for %%a in ("Source*.*") do @echo DirectShowSource("%%a") >> "batchScript.avs" && @echo MSharpen(10,120) >> "batchScript.avs" && ffmpeg -i "batchScript.avs" -n -c:v libx264 -crf 24 -c:a libmp3lame -b:a 192k "Target\%% na.mp4" && del "batchScript.avs" pause

    I’m not sure why, but when I playback the encoded files in media player classic I can only jump to discrete jumps in time and not to the exact time I clicked on.

    What can be done so this doesn’t happen ?

    Thanks all !