Recherche avancée

Médias (0)

Mot : - Tags -/configuration

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

Autres articles (78)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (11322)

  • 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")