Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (111)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

Sur d’autres sites (6651)

  • Creating a batch file for ffmpeg to combine image sequence to mkv

    13 août 2020, par Eric

    I have been doing some work remastering some videos by converting them to image sequences, editing them, then converting them back to videos. To do the last step, I have been just using the command prompt with ffmpeg. My goal is to create a batch file that I can just put into the folder with my image sequence and run it rather than needing to do it through the command prompt manually.

    


    Here is the command I've been running :
"C:\Program Files (x86)\ffmpeg\bin\ffmpeg.exe" -framerate 23.97 -i "%06d.png" -c:v copy "B:\output.mkv"

    


    ffmpeg is located on my C drive, the image sequences are on my Z drive, but I generally move to that folder to run the command, and the images are always named with 6 digits (000000.png-######.png). The output file is created on the B drive.

    


    I assumed that I could just add that command to a .bat file

    


    
"C:\Program Files (x86)\RipBot264v1.25.1\Tools\ffmpeg\bin\ffmpeg.exe" -framerate 23.97 -i "%06d.png" -c:v copy "B:\output.mkv"

pause


    


    but I have not been able to get it to work. When I try to run it, I get an error that seems to be related to the name of the batch file itself :

    


    


    Z :\S09E19"Z :\S09E19_Output.bat6d.png -c:v copy B :\output.mkv : Invalid argument

    


    


    Any help on this would be greatly appreciated.

    


  • How to combine FFMPEG commands of multiple RTSP to HLS

    3 septembre 2021, par Phu Nguyen

    I have some of cameras with different RTSP url and I want to convert all of them from RTSP to HLS so as to show on my website. I'm using single command in Command prompt for each camera now.
Example :
ffmpeg -i "rtsp://admin:admin@192.168.1.2:554/Streaming/Channels/101" -hls_time 2 -hls_wrap 10 "camera1.m3u8"
ffmpeg -i "rtsp://admin:admin@192.168.1.2:554/Streaming/Channels/201" -hls_time 2 -hls_wrap 10 "camera2.m3u8"
ffmpeg -i "rtsp://admin:admin@192.168.1.2:554/Streaming/Channels/301" -hls_time 2 -hls_wrap 10 "camera3.m3u8"

    


    I must run 3 commands in 3 Command prompt. Can I combine multiple commands into single command ?

    


  • how to run ffmpeg command(windows) in java

    26 mai 2020, par SAI GIRI CHARY AOUSULA

    I executed the below FFMPEG terminal command in command prompt successfully. But I am unable to execute this command in my java program. I can execute all other ffmpeg commands which doesn't have double quotation marks, in my java program. Here I have confusing only with double quotation marks("...").

    



    ffmpeg -i "concat:C:\\journalism\\videos\\vid1.ts|C:\\journalism\\videos\\vid2.ts" -c copy C:\\journalism\\videos\\output.mp4


    



    I can execute above in command prompt successfully. But I tried as below in my java code.

    



    Runtime.getRuntime().exec("C:\\ffmpeg\\bin\\ffmpeg -i 'concat:C:\\journalism\\videos\\vid1.ts|C:\\journalism\\videos\\vid2.ts' -c copy C:\\journalism\\videos\\output.mp4");


    



    Even I tried by replaced the double quotation marks("...") with single quotation marks('...'). But not succeeded.

    



    Can anyone please help me to get out of this issue...

    



    Thanks in advance...