Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • qt-faststart : Fix the signedness of variables keeping the ftello return values

    29 octobre 2012, par Michael Niedermayer
    qt-faststart : Fix the signedness of variables keeping the ftello return values
    

    These variables are assigned the return values of ftello, which
    returns an off_t, which is a signed type. On errors, ftello returns
    - 1, thus make sure this error return value can be stored properly.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] tools/qt-faststart.c
  • PySceneDetect FFmpeg Not Available

    14 août 2023, par Dmitriy Pushkarev

    I already installed FFmpeg and this is available in terminal I can convert video and etc, but it's completely not available in PySceneDetect.

    &#xA;

    pip installed FFmpeg-python and FFmpeg library and FFmpeg itself in system.

    &#xA;

    PySceneDetect returns :

    &#xA;

    ffmpeg could not be found on the system. Please install ffmpeg to enable video output support.&#xA;

    &#xA;

    I think trouble with path, but can't put path in PySceneDetect. I can use path to binary FFmpeg, only in ffmpeg-python library, like this and it's working

    &#xA;

    This code working fine :

    &#xA;

    Here i using only FFmpeg-python library

    &#xA;

    stream = ffmpeg.input(&#x27;vi0.mp4&#x27;)&#xA;stream = ffmpeg.filter(stream, &#x27;fps&#x27;, fps=10, round=&#x27;up&#x27;)&#xA;stream = ffmpeg.output(stream, &#x27;vi1.mp4&#x27;)&#xA;ffmpeg.run(stream,cmd=&#x27;./ffmpeg&#x27;)&#xA;

    &#xA;

    But can't it to get work with PySceneDetect

    &#xA;

    print(scenedetect.video_splitter.is_ffmpeg_available())&#xA;

    &#xA;

    return False

    &#xA;

    split_video_ffmpeg(video_path, scene_list, show_progress=False)&#xA;

    &#xA;

    returns "ffmpeg could not be found on the system. Please install ffmpeg to enable video output support."

    &#xA;

  • Trim video in Android using ffmpeg, audio and video not in sync

    8 novembre 2017, par Nidhin Radh

    I’m creating an Android application which process video files and I’ve used VideoKit library (https://github.com/inFullMobile/videokit-ffmpeg-android) to integrate ffmpeg with the application.
    I used the following snippet to trim a video,

                       Command command= videoKit.createCommand()
                                       .overwriteOutput()
                                       .inputPath(ipfile.getAbsolutePath())
                                       .outputPath(opfile.getAbsolutePath())
                                       .customCommand("-ss 10 -t 30 -vcodec "+
                                        "copy -acodec copy -async 1")
                                       .copyVideoCodec()
                                       .experimentalFlag()
                                       .build();
                               command.execute();

    Sometimes the output seems to be okay, but sometimes the video and audio are not in sync, i.e. video ends before audio. Most of the time this happens with videos downloaded from YouTube.
    Can someone give me an idea to trim videos in android without any problems ?