Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (75)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (12174)

  • How to load my local mpd(mpeg-dash) file to online players ?

    18 août 2023, par Walter

    I am trying to use some online players to test my local mpd file, but it could't be loaded as 'file :///path-to-file' form like local urls, what's the correct format to load the file ? Or should I upload it online or so ?

    


  • Use ffmpeg to move moov atom to front of mp4 file on Google Cloud Platform and Google Cloud Storage

    19 avril 2021, par BlueBoy

    I would like to use ffmpeg to move the moov atom of a .mp4 file to the front of the file so that it can then be streamed.

    


    The .mp4 file is in Google Cloud Storage. I want to take that file and apply the conversion on it (or copy it if needed).

    


    I have successfully run the following command in the terminal and it works. I want to essentially run this command server side on the Google Cloud in a Java environment :

    


    ffmpeg -i input_video_file.mp4 -vcodec copy -acodec copy -movflags faststart output_video_file.mp4

    


    I can get my file from Google Cloud Storage like this :

    


    GcsService gcsService = GcsServiceFactory.createGcsService();
GcsFilename file = new GcsFilename("bucket", "folder/filename;


    


    I was able to find a Java library wrapper for ffmpeg (https://github.com/bramp/ffmpeg-cli-wrapper) but it doesn't seem to allow to move the moov atom. Could anyone help me figure this out further ? Is there a

    


  • Why the following ffmpeg command outpus an eleven minutes long video ?

    11 mars 2019, par Juan Pablo Fernandez

    Why the following ffmpeg command outpus an eleven minutes long video ?

    ffmpeg -ss 600 -i 01x01TheStrongestMan.mp4 -to 660 -vcodec copy -acodec copy -y outputxxx.mp4

    I want to slice the video from the 600 second to the 660 second, the output should be a 1 minute long video.
    How can I do that and why my command is wrong ?

    Thanks.