Recherche avancée

Médias (91)

Autres articles (50)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (5979)

  • How to concatenate bunch of MP4 files using FFmpeg ?

    14 octobre 2020, par lapestand

    I'm trying to concatenate list of mp4 files using FFmpeg. All files are the same length. Difference from ordinary concatenation is I want to split first and last videos and get 2nd and 1st part of them respectively. To be more specific :

    


    Inputs as example :

    


    video_list = [
        "video1.mp4", "video2.mp4", ..., "video150.mp4", "video151.mp4"]

first_video_sec = 345
last_video_sec = 23


    


    Expected output :

    


    (video_list[0] from 345th second + Concatenation of videos in between + videos[len(videos)-1] to 23th second)


    


    as a single mp4 file.

    


    I'm splitting first & last videos and saving their 2nd & 1st parts respectively as an mp4 files then concatenate all videos using concat demuxer. Is there a more efficient way to do this ?

    


  • Modify video with FFMPEG before uploading to S3

    12 juillet 2017, par user774615

    When a user uploads a video, I want to remove its audio. So in my Laravel code, I have something like this :

    // The video from the HTML form
    $video = $request->file('video');

    // Strip the audio
    exec('ffmpeg -y -i ' . <path to="to" file="file"> . ' -an -c copy ' . <new file="file" path="path">);
    </new></path>

    The problem is, I want to upload the final video (without audio) to Amazon’s S3 without saving any part of the video on my local server.

    Is there a way to use $video as the input for the ffmpeg command and then output the result directly to S3 ? How ?

  • Is there a way of using ffmpeg in c# app ?

    6 mai 2015, par randomuser1

    I’m using the ffmpeg.org and when I run ffmpeg -y -f vfwcap -r 25 -i 0 out.mp4 in command line I can grab the video from my webcam and write it to the out.mp4 file. However, I can’t see that stream anywhere. I thought about writing some simple wrapper in c# that is built on ffmpeg functionality, so far I found post mentioned on Stack before, but there’s nothing about displaying the data live (instead of saving it into the file). Does anyone have any experience with it ? Can I for example ’draw’ the received data from webcam on a picture box or on some other component ?
    Thanks !