
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (56)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)
Sur d’autres sites (7208)
-
PHP - Get MP4 location from video URL or Video Embeded [on hold]
28 décembre 2016, par toufik hidayat-2
down vote
favoriteI 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 TirupatiraoI 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 PatrickI’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")