Recherche avancée

Médias (91)

Autres articles (90)

  • 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

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

Sur d’autres sites (12777)

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