Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (76)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (9366)

  • PHP - Get MP4 location from video URL or Video Embeded [on hold]

    28 décembre 2016, par toufik hidayat

    -2
    down vote
    favorite

    I am trying to fetch FREE video anime from acefile

    I have this link for example : http://acefile.net/embed-r9e9vomk8oc8-650x360.html

    What I want to do is to fetch where the mp4 is located and embed it in one of my website pages.

    I have a Chrome plugin that is able to download MP4 videos just by looking at the source page.

    Is there a way to achieve the same with PHP or Python ? Remember I only need the video location not to download it.

    Thanks all

  • How to play audio while recording video and mix both audio and video after completion of record in Android studio

    2 mai 2018, par Tirupatirao

    I tried ffmpeg and mediamuxer and some others solutions

    But I’m unable to achieve it

    I need feature like dubsmash

    I tried some stack overflow answers even though not done

    I want play audio while recording video and after that output will be the custom audio(what I have played) with video

    Please help us...we are trying since 26 days onwards

    Thanks

  • ffmpeg video trim - no video only audio

    24 août 2019, par Patrick

    I’m looking for some hints from you.

    I try to trim mp4 videos (mostly 25fps - 720p) with python 3.7 and ffmpeg subcommand.

    Video cut is working fine, but on short videos, below 1 sec, the output.mp4 has no video in it. i tried to view this by VLC and other apps, but still no video in this file. (>1.5 sec its working well with the same input file)

    I have tried this cuts with different video quality, but still same issue.

    Thanks in advance !

    Patrick

    ffmpeg -i test.mp4 -ss 00:00:00.5 -to 00:00:00.9  -c copy test_cut.mp4

    Python code :

    import sys
    import subprocess as sp
    import os

    from moviepy.tools import subprocess_call
    from moviepy.config import get_setting

    #tried different methods and filters, but still same issue              
           cmd = [get_setting("FFMPEG_BINARY"), "-i", new_path_in, "-ss", "00:00:"+startSec, "-to", "00:00:"+endSec, "-c:v", "copy","-c:a","copy","-pix_fmt","yuv420p", new_path_out]
           subprocess_call(cmd)

           print("cut from "+startSec+" to "+endSec+" done")