
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (67)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...) -
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 (14638)
-
FFMPEG batch remove the last 2 seconds of a list of videos
22 avril 2016, par LisfmegRemoving the first seconds of a video is easy and work easy.
But I need a way to remove the last 2 seconds of all videos in a folder. (it’s the moment my mouse go to the screen-record-program (also ffmpeg btw.) and press quit/stop)
The ffmpeg help give me that for my wish....
-to time_stop record or transcode stop time
-sseof time_off set the start time offset relative to EOF
-seek_timestamp enable/disable seeking by timestamp with -ss
-ss time_off set the start time offsetI miss something like -toeof. But ffmpeg dont have it, yet.
Some substr in diffrent languages offer just a negative value, so I tried ....
ffmpeg -seek_timestamp 1 -i source.mp4 -to -120 -y test.mp4
and
ffmpeg -seek_timestamp 1 -i source.mp4 -to -00:02 -y test.mp4
But that follow only in "-to value smaller than -ss ; aborting." :-(
Anyone have idea ?
I’m on windows and think I need linux console with bash now. But before I install a virtual linux machine and try to script something the next days ..... Is there maybe a easier way ?
-
How can I write SAPI audio stream to stdout in VBScript ?
10 mai 2015, par RavenstineI have this VBScript that will take some text from the command line and dictate it to a wav file using MS SAPI.
Const SAFT48kHz16BitStereo = 39
Const SSFMCreateForWrite = 3
Set oFileStream = CreateObject("SAPI.SpFileStream")
oFileStream.Format.Type = SAFT48kHz16BitStereo
oFileStream.Open "C:\sample.wav", SSFMCreateForWrite
Set Sapi = CreateObject("SAPI.SpVoice")
Set Sapi.voice = Sapi.GetVoices("Name=Microsoft Sam", "Language=409").Item(0)
Sapi.volume = 100
Sapi.rate = 3
Set Sapi.AudioOutputStream = oFileStream
Set args = Wscript.Arguments
Sapi.Speak(args.item(0))Is it possible to, instead of write the audio to a file, write it to standard output ? I’d like to be able to pipe the audio directly to FFMpeg without writing to the file system.
-
riffdec : Explicitly null-terminate array to work around VC++ bug
28 janvier 2016, par Bruce Dawsonriffdec : Explicitly null-terminate array to work around VC++ bug
Due to this bug in VC++ 2015 Update 1 :
https://connect.microsoft.com/VisualStudio/feedback/details/2291638the ’key’ array in ff_read_riff_info() ends up being not null
terminated which led to failures in a Chromium unit tests. Update 2
should have a fix, but until then it is important to avoid problems.