
Recherche avancée
Autres articles (32)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Les images
15 mai 2013
Sur d’autres sites (3316)
-
A ffmpeg command method into a webjob
2 juillet 2017, par FearhunterI am new with Azure Webjobs. I made an ffmpeg function to slice a stream into separate mp4 files :
public Process SliceStream()
{
var url = model_s.Url;
var cuttime = model_s.Cuttime;
var output = model_s.OutputPath;
return Process.Start(new ProcessStartInfo
{
FileName = "ffmpeg.exe",
Arguments = $"-i \"{url}\" -c copy -flags +global_header -f segment -segment_time \"{cuttime}\" -segment_format_options movflags=+faststart -reset_timestamps 1 \"{output}\"",
UseShellExecute = false,
RedirectStandardOutput = true
});
}The
var
properties are the variables for the user input on the front-end. I want to scheduled this method into a webjob. How can I achieve this ? I saw an article on googleNeed I just follow these steps to achieve my goal ? Or must I add some C# code to achieve this ?
-
Merge commit ’58c3720a3cc71142b5d48d8ccdc9213f9a66cd33’
18 août 2015, par Hendrik LeppkesMerge commit ’58c3720a3cc71142b5d48d8ccdc9213f9a66cd33’
* commit ’58c3720a3cc71142b5d48d8ccdc9213f9a66cd33’ :
fate : Make sure a corner-case for ASF is coveredAdjusted fate ref to match the different timebase of the ffasf demuxer
Merged-by : Hendrik Leppkes <h.leppkes@gmail.com>
-
How to use ffmpeg in uwp ?
22 avril 2022, par MrLI developed a software with electron. It needs ffmpeg, but when I package it into appx, I won't be able to use ffmpeg.


let FFmpegPath = path.resolve(AppPath, "FFmpeg");
let FFMPEGPATH = path.resolve(FFmpegPath, "ffmpeg");
let FFPROBEPATH = path.resolve(FFmpegPath, "ffprobe");
let FFoption_V = '"'+FFPROBEPATH+'"' + " -i " +'"'+ path.normalize(PATH)+'"' + " -show_streams -select_streams v -of json";
EXEC_V = C_PRO.execSync(FFoption_V);



This is the information I found, but it doesn't seem to work for electron :https://docs.microsoft.com/en-us/windows/apps/desktop/modernize/desktop-to-uwp-extensions


<package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10">
 ...
 <capabilities>
 
 </capabilities>
 <applications>
 <application>
 <extensions>
 
 
 
 
 
 
 </extensions>
 </application>
 </applications>
</package>