
Recherche avancée
Médias (10)
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (42)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications 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 (...) -
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 ;
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)
Sur d’autres sites (7003)
-
asp.net ffmpeg : The system cannot find the file specified
19 juin 2016, par MalikI am doing code for extracting image from video using ffmpeg. But gone stuck what this means. I also have checked
ffmpeg -i F:\MIC\stream\finalstream\casper\small.mp4 -an -ss 00:00:03 -s 108*80 -vframes 1 -f image2 -vcodec mjpeg F:/MIC/stream/finalstream/caspe
r/output11.pngon cmd line and working fine but dont understand why this is not happening in asp.net ?
here is my code this function happens on button click event :
protected void Capture(object sender, EventArgs e)
{
string InputFile = @"F:\MIC\stream\finalstream\casper\small.mp4";
string ThumbnailsPath = @"F:\MIC\stream\finalstream\casper\testimage.jpg";
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.EnableRaisingEvents = false;
proc.StartInfo.FileName = Page.MapPath("~/ffmpeg.exe");
proc.StartInfo.Arguments = "-i F:/MIC/stream/finalstream/casper/small.mp4 -an -ss 00:00:03 -s 108*80 -vframes 1 -f image2 -vcodec mjpeg F:/MIC/stream/finalstream/casper/ output11.png";
proc.Start();
}while running i got this Error :
Any idea ????
-
Is there a way to compile code on a Mac in a sandbox so it doesn't potentially affect my system if something goes wrong ?
31 mars 2012, par Eli GreenbergI'm going to attempt to build ffmpeg with a bunch of libraries included and I would like to keep my current system clean in case it all goes to shit. Is there a way to compile programs like ffmpeg so that they don't affect the system if something goes wrong ?
I'm a beginner at this stuff, so if this question is misguided and there is no danger in compiling programs please let me know :)
-
Extract just the audio link from a youtube video without converting
27 janvier, par MR-4O4I know there are hundreds of sites to convert youtube video to mp3. Most of them do it by first downloading the video and then converting it to mp3(or any other audio format) on their server using youtube-dl, ffmpeg or similar programs.



What I want to know is, is there any way I can just extract the audio link for any youtube video ? I don't know if it's possible but I saw a couple of websites doing it .



First Website : Openaisearch.com
This website simply gives a download link for the audio(getting it from youtube videos). I searched for a song and saw the download url, it looked something like this :



https://redirector.googlevideo.com/videoplayback?source=youtube&requiressl=yes&clen=3814013&upn=dzwY9aUVYME&lmt=1469875393441562&expire=1484854959&mime=audio%2Fmp4&nh=IgpwcjAxLnNlYTA5Kg01Mi45NS4yMTYuMTAy&itag=140........... 




I believe that this is not done by first downloading and converting the video to audio format(Correct me if I am wrong).
Although the file which gets downloaded after using this link is without any extension, but adding ".m4a" at the end of downloaded file does the work.



Second Website : http://keepvid.com/ ?url=https ://www.youtube.com/watch?v=PT2_F-1esPk



Again similar website with similar audio link. You can check by visiting the URL and see link of audio files.



Any idea how these websites get that "googlevideo.com" link ? Do they scrap the youtube video links or something ?



Thanks.