Recherche avancée

Médias (91)

Autres articles (33)

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

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

  • How to get iOS App Preview video bitrate in range

    29 avril 2019, par JKaz

    Creating new App Previews for App Store Connect has always been difficult. Time to do it again (new app version) and running into same issue without resolution this time.

    Making the video is easy enough, recording it with Quicktime and either a connected device or through Simulator (and the xcrun simctl io booted recordVideo <filename>.<file extension="extension"></file></filename> Terminal command).

    I can open that in iMovie, create a new App Preview, and export/share the preview with proper size, length, frame rate per Apple specs. But the bit rate is always too low ( 4 mbps) and it’s required to be 10-12 mbps (and I’ve had video reject be/c of that). In the past I could always make some change to the .mp4, in conjunction with something like ffmpeg -i ~/appVideo.mp4 -b:v 11M ~/appPreview.mp4 to get the file into the target range, but that’s not helping today, and neither is Developer Tech Support.

    Apple’s documentation says :

    To export the final video, click Share in the toolbar, then choose App
    Preview. The export settings are automatically configured to meet App
    Store requirements. iMovie exports the final video at the correct
    resolution based on the device from which your clips were captured.

    I’ve done that and more, and bit rate is still out of range (every other attribute is in spec). I’ve tried the recommendations from a bunch of other threads here for http://video.online-convert.com/convert-to-mp4 and others, and none seem to do the trick. Am I missing something obvious re bitrate ? Is it this hard for everyone ?

    Thank you.

  • MediaConver split video into multiple chunk but in different duration length

    12 novembre 2020, par Sandip

    I have one video with 1 hr time.

    &#xA;

    i want to chunk in different part by specified range.

    &#xA;

    ex :

    &#xA;

      &#xA;
    1. 0 to 10 min
    2. &#xA;

    3. 10 to 40 min
    4. &#xA;

    5. 40 to 60 min
    6. &#xA;

    &#xA;

    I know it is possible by ffmpeg but i want to do this with MediaConvert.

    &#xA;

    here is sample for ffmpeg but same thing i want do using MediaConvert

    &#xA;

    ffmpeg -i input.mp4 -c copy -f segment -segment_times 0,600,2400 output%d.mp4&#xA;

    &#xA;

  • How to set yuv to full range in a mpeg2video ?

    7 mai 2021, par Jefferson Villasan Josol

    I've found out that YUV420P has a limited range based on MediaInfo. How can I set that into Full range using ffmpeg ? Does anyone know how to set it into Full ?&#xA;I'm currently using mpeg2video -q:v 0 because it has an acceptable quality and small file sizes compared to x264 -crf 0.&#xA;Thanks in advance for those who can help me !

    &#xA;

    Edit : I prefer mpeg2video because it is much faster compared to x264 encoding. And I've also noticed that -q:v 0 is better than -q:v 2. I don't know if it sounds strange but on my phone, the quality is really better if I use the -c:v mpeg2video -q:v 0

    &#xA;