Recherche avancée

Médias (91)

Autres articles (102)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (8056)

  • What ffmpeg player and how to implement it in android

    23 juillet 2015, par Payam30

    I made a online tv application where i get my streaming videos in m3u8 and play them in my app. How ever it seems that the mediaplayer encoder gets problem with it. Someone suggested to use a another encoder like ffmpeg.

    Now my question is : do you know any good ffmpeg player with good documentation and guidlines that would play my playlists ?

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

  • Use ffmpeg to add multiple subtitles separately to a video

    3 mars 2024, par Appa

    I am trying to add multiple languages of subtitles to a video using ffmpeg. I succeeded in adding 1 language, but can't seem to add a second one. &#xA;I use this simple script to add english subtitles to my video.

    &#xA;&#xA;

    ffmpeg -i %1 -i subs_eng.srt -map 0 -vcodec copy -acodec copy -scodec subrip -metadata:s:s:0 language=English "%~n1"_eng.mkv&#xA;

    &#xA;&#xA;

    In addition, I run another script to add the Dutch subtitles.

    &#xA;&#xA;

    ffmpeg -i %1 -i subs_nl.srt -map 0? -vcodec copy -acodec copy -scodec subrip -metadata:s:s:1 language=Dutch "%~n1"_nl.mkv&#xA;

    &#xA;&#xA;

    But whenever I add the second language, it doesn't seem to do anything. The command terminal shows that ffmpeg is processing the video, but there is only 1 subtitle language available in vlc media player (the first one).

    &#xA;&#xA;

    I really want to be able to add it in 2 takes rather than in the same script, as I don't have both languages for all of my video's.

    &#xA;