Recherche avancée

Médias (0)

Mot : - Tags -/api

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

Autres articles (48)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • L’espace de configuration de MediaSPIP

    29 novembre 2010, par

    L’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
    Il permet de configurer finement votre site.
    La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)

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

  • h264_parser : don’t stop on SPS_EXT in split

    31 octobre 2014, par John Stebbins
    h264_parser : don’t stop on SPS_EXT in split
    

    Add SPS_EXT, SEI, and subset SPS to codes that are skipped during split.
    These codes can come before the PPS and results in incomplete extradata.

    • [DBH] libavcodec/h264_parser.c
  • Using ffmpeg to split the duration of 360 video files [closed]

    14 décembre 2022, par bloodstar

    I run this code to split normal mp4 files into 5 minute chunks however when i execute 360 video files, the videos are then converted into a normal video (360 flat view) after running this code :

    


    @for %%I in (%*) do @ffmpeg.exe -i "%%~I" -c:v copy -c:a aac -segment_time 00:05:00 -f segment -reset_timestamps 1 "%%~nI_%%03d%%~xI" && del "%%~I"


    


    What am i doing wrong ? thanks

    


  • ffmpeg Split And Zoom

    4 décembre 2019, par megaimd mega
    ffmpeg -i video.mp4 -c:v libx264 -crf 22 -map 0 -segment_time 3 -reset_timestamps 1 -g 10 -sc_threshold 0 -force_key_frames “expr:gte(t,n_forced*3)” -f segment out/output%03d.mp4

    As you can see, it is saved :

      output1.mp4
      output2.mp4
      output3.mp4
      output4.mp4

    and so on, it split every 3 seconds.
    Ho can I make, for exemple

      output1.mp4 zoom 2X
      output2.mp4 Normal
      output3.mp4 zoom 2X
      output4.mp4 Normal

    for one movie to zoom in and for another to not zoom