Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (30)

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

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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (5607)

  • FFMPEG Spectrogram max Frequency

    14 janvier 2018, par goo

    Is there a way to select max frequency when generating spectrograms whith ffpeg ?

    $ ffmpeg -i some.mp3 -lavfi showspectrumpic image-out.png -y

    showspectrumpic docs doesn’t say anything about it :(

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