
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (86)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (11855)
-
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")