Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (40)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

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

  • ffmpeg auto split into exact timeframes

    27 novembre 2022, par Rey Bet

    I've been trying to autosplit a video into smaller clips of same length using ffmpeg. I know the command :

    


    ffmpeg -i "video.mp4" -c copy -map 0 -segment_time 00:00:05 -f segment -reset_timestamps 1 output%03d.mp4)


    


    But this one splits videos into frames so the time is varying.
I found a command

    


    ffmpeg -i "name" -ss 0 -t 5 p1.mp4
ffmpeg -i "name.mp4" -ss 5 -t 5 p2.mp4
ffmpeg -i "name" -ss 10 -t 5 p3.mp4 


    


    But this would mean i would have to do it manually for whole video. Is there way to automate the process so i can split the video into exact time ? Thank you.

    


    I'm using Windows 10 if it makes any difference

    


  • How can i split a video file in C# ?

    19 février 2015, par fthymn

    I’m using c# on vs2012.
    I wanna split to video file for a custom time arrange.
    For Example ; my video file length 30 minutes and i want to watching just selection time arrange. (like between 10th second and 45th second.)

    I dont want to physical new file.

    My steps for what am i doing :)

    1- Select Source Video File.
    2- I must learn source video time length.
    3- I use rangetrackbar control user select time arrange.
    4- User click play then selected time arrange scenes played.

    Is it possible ?

  • Using ffmpeg to split MP3 file to multiple equally sound length files

    11 septembre 2019, par daliaessam

    How to use the command line tool ffmpeg on Windows to split a sound file to multiple sound files without changing the sound properties same everything each one is fixed 30 seconds length. I got this manual example from here :

    ffmpeg -i long.mp3 -acodec copy -ss 00:00:00 -t 00:00:30 half1.mp3
    ffmpeg -i long.mp3 -acodec copy -ss 00:00:30 -t 00:00:30 half2.mp3

    But is there a way to tell it to split the input file to equally sound files each one is 30 seconds and the last one is the remaining what ever length.