
Recherche avancée
Autres articles (43)
-
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 (...) -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
Sur d’autres sites (7006)
-
SETX is not recognized as an internal or external command operable program or batch file [duplicate]
6 avril 2020, par anonymous(skip this paragraph if you don't care about context) : So I was trying to record inside of Minecraft using the replay mod, and to render a video I have to install this thing called ffmpeg to render it, and my fears were correct, SETX is not recognized.



So, a while back I had to redo my javac because that wasn't recognized, but when I did get that fixed, it made all my other commands toast, except the basic ones like "copy" or "del". I don't know how, I'd assume I'd need to manually input the path variable and everything because I doubt I could even find anything in the system variables for it, but that may not be the case. Suggest some YouTube vids, or a thorough and non-complicated explanation if you can, because for some reason, some instructions go through one ear and out the other.



I also posted this in /r/feedthebeast, but I doubt anyone will find a solution there.



Thanks.


-
how to create a radio or video "station" continuous TS stream with ffmpeg
25 février 2020, par ZibriI can’t find any answer to this scenarios :
Produce a continuous ts file that initially contains silence (or blank video), and as I add files to a text file I wish them to be queued in the output ts stream.
Think of it as a radio or tv station.
I found everything on how to stream anything to anything,
but not a tv/radio broadcast like stream.A good start seems to be this :
ffmpeg -re -y -nostats -nostdin -hide_banner -loglevel quiet -fflags +genpts -f concat -i list.txt -map 0:a? -map 0:v? -map 0:s? -strict -2 -dn -c copy -hls_flags delete_segments -hls_time 10 -hls_list_size 6 /var/www/html/showname_.m3u8
list.txt example
file '/mnt/vusolo-tv/show/Season 1/S01E01.mp4'
file '/mnt/vusolo-tv/show/Season 1/S01E02.mp4'But i think there can be better ways...
This is not a good answer either : From multiple video files to single output
because "All files must have streams with identical encoding. Timebase for streams should be the same. Duration of all streams within a file should be the same, in order to maintain sync."
And I want to be able to add arbitrary files and produce a TS stream playable by any TV (once broadcasted in dvb). -
Recursively converting all files in folder using FFMpeg and placing them in different output folder
10 janvier 2020, par Cecila TarjonI want to remux some videos to MP4 so that I can play them on my Roku as well as my Plex. I have reviewed the approaches suggested in the answers to the questions
How would I write a batch file to run an ffmpeg command on an entire directory ? and How do you convert an entire directory with ffmpeg ?, but this doesn’t quite solve my problem.I am currently using the command prompt to navigate to the directory in question and then running the command line :
for %i in (*.mkv) do c:\ffmpeg\bin\ffmpeg -i "%i" -c copy -map 0 %userprofile%\documents\Plex\mp4\%~ni.mp4"
I would like to be able to run this from a higher level (i.e.,
%userprofiles%\Documents\Plex\MKV
instead of...\mkv\show\season
) and have it run on all subfolders.I would also ideally like for it to output to the
mp4\show\season
level for the same place it gets them from.How can I accomplish this ?
Once I know it will work in a regular command window, I will be converting it to a batch file so I can run as needed.