Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (39)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (4902)

  • I want to use C# to get the first frame of a video as a preview image of the video without using ffmpeg to achieve it [closed]

    19 avril 2023, par anton

    I have some video files here. My client asked me to edit and format these video files and some text content and display them. Of course, C# is required. Since ffmpeg has 100+ mb, it's too big. Is there any other alternative or other more portable three-party library ?

    


    I'm using ffmpeg now, but it's too big, it needs to be started from the command line, and it can't be packaged perfectly with fody.

    


    I wonder if there is a more lightweight or embedded way to replace it to get the first frame of the video as a preview of the video

    


    I'm using winform not WPF

    


  • FFMPEG trouble with concatenating Video + Video[+Audio]

    27 avril 2022, par umpyloompy

    i need to concatenate (1-st Video) without changes + (2-nd video with replaced audio), but my command skips 2-nd video (but duration shows normally)

    


    my code :

    


    ffmpeg.exe -y -i "1st.mp4" -i "2nd.mp4" -i "audio.mp3" -map 0:v:0 -map 1:v:0 -map 1:a:0 -c copy "output"


    


    what's wrong ? =(

    


  • Split video file from 'n' th frame to end of video in Linux

    17 novembre 2011, par Skkard

    I need to split a video file using frames as the measure, e.g. I need to save the part of the video from the 34th frame to the end of the video in Linux( specifically fedora 16, xfce, 64bit ).

    I've tried using ffmpeg, using the '-vframes' option to specify how many frames to save, but it starts from the beginning, so is not that useful. How can I start from a certain frame in between the video and save the video from there to the end in a new file.

    I know about the '-ss' option, but while converting number of frames to the specified time, there might be errors( or so I believe. Please correct me if I'm wrong ) due to rounding.

    Could you please suggest a method ? Thanks !