
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (55)
-
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 (...) -
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (7329)
-
Using FFMPEG with Cookies ? jsessionid ? [closed]
12 juin 2024, par mario anneSorry if I just missed the answers but I have searched for one and a half hour already. I want to use FFmpeg to download a video. But it doesn't work. I got the following link :
" https://streaming.magentamusik.de/csm/live/141580688/6.m3u8 ;jsessionid=8FC831D877B0B49D91525B7D5B71C62B.csm-e-ces1aeuw1live102-0f371de46adbfb70f.tls1.yospace.com?yo.aas=streamingmagentamusic360-eb.tls1&yo.up=https://streaming.magentamusik.de/hls/live/573870/magentamusik1/&yo.eb.fb=aHR0cHM6Ly9zdHJlYW1pbmcubWFnZW50YW11c2lrLmRlL2hscy9saXZlLzU3Mzg3MC9tYWdlbnRhbXVzaWsxL2luZGV4Lm0zdTg&yo.ac=true&yo.pdt=sync&yo.av=3&yo.po=3&iOS_QS=1&yo.ac=true&yo.pdt=sync&yo.av=3&externalId=magentamusik1
"
but "ffmpeg -i https://streaming.magentamusik.de/csm/live/141580688/6.m3u8 ;jsessionid=8FC831D877B0B49D91525B7D5B71C62B.csm-e-ces1aeuw1live102-0f371de46adbfb70f.tls1.yospace.com?yo.aas=streamingmagentamusic360-eb.tls1&yo.up=https://streaming.magentamusik.de/hls/live/573870/magentamusik1/&yo.eb.fb=aHR0cHM6Ly9zdHJlYW1pbmcubWFnZW50YW11c2lrLmRlL2hscy9saXZlLzU3Mzg3MC9tYWdlbnRhbXVzaWsxL2luZGV4Lm0zdTg&yo.ac=true&yo.pdt=sync&yo.av=3&yo.po=3&iOS_QS=1&yo.ac=true&yo.pdt=sync&yo.av=3&externalId=magentamusik1 -c copy outputfile.mp4"
doesn't work.


Please help me. Even just pointing to a direction I could look into would be nice.


I tried downloading a video, but failed as it returns "HTTP error 404 Not Found".


-
ffmpeg screen capture using screen-capture-recorder cmd not working in vb
14 juin 2014, par user3234288I’ve started ffmpeg as process in VB but ffmpeg cmd for capturing alone is not working. My code is,I don’t know how to solve the problem, if any help greatly appreciated
proc.StartInfo.FileName = System.Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) & "\converter\bin\ffmpeg.exe"
proc.StartInfo.Arguments = "-f dshow -i video=screen-capture-recorder screen.mp4"
proc.StartInfo.UseShellExecute = False
proc.StartInfo.WindowStyle = ProcessWindowStyle.Hidden
proc.StartInfo.RedirectStandardInput = True
proc.StartInfo.RedirectStandardOutput = True
proc.StartInfo.CreateNoWindow = True
proc.Start() -
How do I read ffmpeg log with c# ?
24 septembre 2018, par mr_blondI want to make "./ffmpeg -i vid.mkv" command, to get info and then I need to read it in c#.
Thereby I run ffmpeg as Process :
var proc = new Process
{
StartInfo = new ProcessStartInfo
{
FileName = "ffmpeg",
Arguments = "-i vid.mkv",
UseShellExecute = false,
RedirectStandardOutput = true,
CreateNoWindow = true
}
};Then I try to read id :
proc.Start();
while (!proc.StandardOutput.EndOfStream)
{
string line = proc.StandardOutput.ReadLine();
}At the step
proc.Start()
new console window opens and ffmpeg writes log to it. And at the step
while()
proc.StandardOutput.EndOfStream
becomes true.How do I read this log ?