
Recherche avancée
Autres articles (38)
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Changer le statut par défaut des nouveaux inscrits
26 décembre 2015, parPar défaut, lors de leur inscription, les nouveaux utilisateurs ont le statut de visiteur. Ils disposent de certains droits mais ne peuvent pas forcément publier leurs contenus eux-même etc...
Il est possible de changer ce statut par défaut. en "rédacteur".
Pour ce faire, un administrateur webmestre du site doit aller dans l’espace privé de SPIP en ajoutant ecrire/ à l’url de son site.
Une fois dans l’espace privé, il lui faut suivre les menus configuration > Interactivité et activer (...) -
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 (...)
Sur d’autres sites (5338)
-
golang manage mutiple os commands across apis (need to start stop on user request)
30 mai 2023, par NitinThe scenerio is i have to start n number of rtsp camera stream using ffmpeg command.
user has option to start number of streams and can form tiler so he can see many streaming cameras similar to (nvr live view). i can start and stop stream using os/exec's command with context and ffmpeg streaming command with it. which start's stream. but main part is how can i cancel particular stream to stop. based on user's request. (in python i can kill os process using process id) is there any way to stop/start particular stream, any references will be helpful.


-
Start timestamp of pts_time in an MPEG-TS stream is not zero
5 septembre 2023, par userDtrmI'm using ffmpeg to generate a MPEG-TS stream using the following command.



ffmpeg -i file1.mp4 -c:v libx265 -x265-params crf=25 -c:a copy output1.ts




When examining the output1.ts using,



ffplay -i output1.ts -vf showinfo




reveals that start timestamp under pts_time is not equal to zero. it shows 1.48.



A remuxing using



ffmpeg -i output1.ts -c:v copy -c:a copy -mpegts_copyts 1 output2.ts




caused the output2.ts to have a start timestamp of 0.08.



I would really appreciate if someone could explain me the reason for this behaviour and how I can set the start timestamp to zero.


-
Start timestamp of pts_time in an MPEG-TS stream is not zero
12 juin 2015, par userDtrmI’m using ffmpeg to generate a MPEG-TS stream using the following command.
ffmpeg -i file1.mp4 -c:v libx265 -x265-params crf=25 -c:a copy output1.ts
When examining the output1.ts using,
ffplay -i output1.ts -vf showinfo
reveals that start timestamp under pts_time is not equal to zero. it shows 1.48.
A remuxing using
ffmpeg -i output1.ts -c:v copy -c:a copy -mpegts_copyts 1 output2.ts
caused the output2.ts to have a start timestamp of 0.08.
I would really appreciate if someone could explain me the reason for this behaviour and how I can set the start timestamp to zero.