Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (9)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

Sur d’autres sites (4233)

  • How to divide my video horizontally using ffmpeg (without any other side-effects) ?

    1er février 2021, par Mayank Thapliyal

    I am processing my video(640 X 1280 dimensions). I want to divide my video horizontally into 2 separate videos(each video will now be 640 X 640 in dimensions),then combine them horizontally (video dimension will be now 1280 X 640)in a single video. I did the research on the internet and my issue was solved and not solved at the same time

    


    I made a batch file and add these commands in it :-

    


    ffmpeg -i input.mp4 -filter_complex "[0]crop=iw:ih/2:0:0[top];[0]crop=iw:ih/2:0:oh[bottom]" -map "[top]" top.mp4 -map "[bottom]" bottom.mp4
ffmpeg -i top.mp4 -i bottom.mp4 -filter_complex hstack output.mp4


    


    Yes,my task got solved but many other issues also came out of it :-

    


    1.) My output video has NO audio in it. No idea why there is no audio in the end results

    


    2.) My main video file (on which I am doing all this) is 258 MB in size. But the result was only 38 MB in size. No idea what is happening ? And even worse,I closely looked at the video,results were pretty same (only animation were not as smooth in output file as compared to input file)

    


    3.) It is taking too much time(I know that computing takes some time but maybe there may be some way/sacrifice to make the process much quicker)

    


    Thanks in advance for helping me

    


  • Revert "Don’t use expressions with side effects in macro parameters"

    1er août 2016, par Martin Storsjö
    Revert "Don’t use expressions with side effects in macro parameters"
    

    This reverts commit 25bacd0a0c32ae682e6f411b1ac9020aeaabca72.

    Since 230b1c070, the bytewise AV_W*() macros only expand their
    argument once, so revert to the more readable version of these.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavcodec/dxv.c
    • [DBH] libavformat/xmv.c
  • Don’t use expressions with side effects in macro parameters

    28 juillet 2016, par Martin Storsjö
    Don’t use expressions with side effects in macro parameters
    

    AV_WB32 can be implemented as a macro that expands its parameters
    multiple times (in case AV_HAVE_FAST_UNALIGNED isn’t set and the
    compiler doesn’t support GCC attributes) ; make sure not to read
    multiple times from the source in this case.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavcodec/dxv.c
    • [DBH] libavformat/xmv.c