
Recherche avancée
Médias (29)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (67)
-
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 (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)
Sur d’autres sites (10035)
-
Adding Mediainfo into Videos
13 août 2019, par yrcjeI’m trying to add/preserve these datas while recording/editing .TS footage, (datas will be shown below), I’m using VideoReDo TVSuite5 to edit these .ts/.tp files without losing these datas, as from what I know, VideoReDo software automatically removes these miscellaneous data from the stream, I’m trying to preserve it while editing, or adding it back after editing, is there any way to do this ?
Not much as I can’t really find any documentation on Menu info editing online. From what I can see so far, these data can only be obtained if the source itself is from a Native Internet TV Box. But is there any other way around it ?
Menu #1
ID : 32 (0x20)
Menu ID : 2 (0x2)
Duration : 1 h 25 min
List : 33 (0x21) (MPEG Video, Korean) / 36 (0x24) (AC-3, Korean)The Mediainfo is inside the pastebin link.
MediainfoNo error message defined a there is no known way to add these.
-
FFmpeg same Filename for output but without extension with python
10 septembre 2020, par Ptibouc77i'm kinda noob with Python but i managed to make this code to encode multiple videos files from a folder to H265, everything woks fine exept for the output name.


Actually the output name keep the old file extension with the new one like this "MyMovie.mov.mp4" and i want it to be named like this "MyMovie.mp4" is there any way to exclude the original file extension from the output file ?


import os, sys, re

input_folder= '/content/drive/My Drive/Videos'
output_folder= '/content/drive/My Drive/Videos/X265' 
quality_setting = '30'
file_type = 'mp4

my_suffixes = (".mp4", ".mov", ".mkv", ".avi", ".ts", ".flv", ".webm", ".wmv", ".mpg", ".m4v", ".f4v")

from pathlib import Path
Path(output_folder).mkdir(parents=True, exist_ok=True)

for filename in os.listdir(my_folder):
 if (filename.endswith(my_suffixes)):
 cmd = !ffmpeg -v quiet -stats -hwaccel cuvid -i "$input_folder/{filename}" -metadata comment="X265-QF$quality_setting-AAC" -c:v hevc_nvenc -preset:v slow -rc vbr -cq $quality_setting -c:a aac -b:a 160k "$output_folder/{filename}.$file_type"



Ps : This code is used on Google Colab that's why i need this with python.


-
FFMPEG : Save extracted frames to temporarily in ssd then flush to hdd
2 février 2019, par Rishi KatariaI am trying to extract the frames from a video file. My HDD is slow and is acting as a bottleneck, so I wanted to save the frames to my SSD, and as it gets full, send those frames to my hard drive. so periodically flushing the frames to the hard drive. I was hoping there would be some solution for that.
This is what I am using now :
ffmpeg -y -hwaccel cuda -i vid.mkv %%d_frame.png
Cheers !