Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (51)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

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

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (6367)

  • Range selector for Video trimming

    28 février 2019, par VoidMain

    I am working on a project in which I have to trim a video. But first the user needs to select the video for trimming I have done a little digging around and have failed to find a suitable library. I need to implement just the UI that would let the user select the starting and ending point of the trim.

    (I need just the UI the data will be taken from that UI will be used in trimming the video using FFmpeg-android which is working properly)

    A library similar to this iOS layout would do the trick.

    https://drive.google.com/file/d/15FqIX_Sh1TqBrr2cZdkOka0pCMZ0BcNq/view

    Please, do let me know if you have any ideas ? or a better solution for it.

    Any help would be appreciated.
    Thanks

  • How do I batch cut videos ? [closed]

    12 février 2024, par EngineerJack

    I've searched for a while on Google, but haven't found a good solution.

    


    I have multiple videos that I want to cut parts from, so I would like to figure out how to batch cut them so I can figure out each video, then cut them all at once.

    


    I assume I'll use the terminal or powershell, and use commands, write down the info for each video in a file (like a script) then call on that file so they process one after another from that script.

    


    I know that I can do this one-by-one with the code below, but I would like to know how to use the following code for multiple videos as I described above.

    


    ffmpeg -i "video.mp4" -ss 00:00:00 -to 00:00:00 -async 1 -strict -2 "cut.mp4"

    


    BUT, a program (preferrably freeware) that isn't a video editor, but one that I can put the "start" and "end" times, then add multiple videos, WOULD be preferred.

    


    Anyone who can help me with this, I'd appreciate it.

    


    I've tried searching for ways to do this using .bat and .ps1 files on Google, but without finding a good solution.

    


  • FFMpeg : CFLAGS=-D__STDC_CONSTANT_MACROS ./configure where ?

    24 avril 2013, par olidev

    I got this problem " 'UINT64_C' was not declared in this scope" while using the ffmpeg library for Eclipse running under Ubuntu.

    After a while, I have found this solution : http://code.google.com/p/ffmpegsource/issues/detail?id=11

    But I could not know how to this :

    This should be fixed in our build system no matter what version of ffmpeg you're using. If you're still getting it, run configure like so :
    CFLAGS=-D__STDC_CONSTANT_MACROS ./configure
    and your problems should go away. This applies to other C++ programs using ffmpeg as well and not just to ffms2, but I can't guarantee that other programs won't break if you define that macro (they really shouldn't, though).

    Where can I run the configure ? from Terminal ? I tried with Terminal but it does not work.

    Anybody has an idea how to run the configure ?

    Thanks in advance and your help is much appreciate !