
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 (36)
-
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 (...) -
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (6537)
-
ffmpeg : speed up AND rotate video
30 juillet 2021, par LFPGamingThis is my current script that I'm trying to use to speed up the playspeed and rotate my video by 90', but it doesn't work when I include the
transpose=1
argument.

"C:\ffmpeg-win64\bin\ffmpeg.exe" -i "C:\video1.mkv" -vf "setpts=PTS/60" "transpose=1" -an -crf 18 "C:\video2.mkv"



Script works without the transpose argument and speeds up my video perfectly, but Script won't run once I try to rotate the video by 90' and outputs an error :


Unable to find a suitable output format for 'transpose=1'
transpose=1: Invalid argument



Can anyone tell me where I'm going wrong ?


-
Bash Function for FFMPEG change speed (audio and video together) ?
22 avril 2021, par Mr CandidoI saw several examples, I tried several, but I couldn't get any that could increase the speed by 20, 30, ...%


I was only able to convert the video, but the audio and video were never synchronized


ffmpeg_changespeed ()
{
video_source = $1
speed = $2

ffmpeg ???????
}



Speed


1.2 => 20% increment


1.5 => 50%


2 => 100%


-
Is there way to increase speed of burning subtitles to a video in ffmpeg
19 mars 2021, par Ahmed YasirCurrently, I do it this way :
ffmpeg -i video.mkv -vf subtitles=video.mkv out.mp4
But with some videos, it takes too long around 55mins but with handbrake, it takes only 10 mins to burn subtitle to video even though I tweaked the setting for instances enabling ultrafast mode. Is there a way to increase the speed of that : maybe saving output files with the lesser quality or something ?