Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (58)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 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, par

    Par 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 (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (8976)

  • Command is running different from expected when i use it trought Python

    17 septembre 2021, par Gustavo Marinho

    I have a code where i download a youtube video as 3gpp and convert it to a mp3, i need to use FFmpeg to do this, and it work well when using both cmd and powershell, but, when i tried to run the same command in Python, it didin't work at all.

    


    This is my command :

    


    ffmpeg -i  C:\YTDownloads\CurrentAudio.3gpp C:\YTDownloads\CurrentAudio.mp3

    


    I tried :

    


    subprocess.call(r'%SystemRoot%\system32\WindowsPowerShell\v1.0\powershell.exe ffmpeg -i  C:\YTDownloads\CurrentAudio.3gpp C:\YTDownloads\CurrentAudio.mp3', shell=True)

    


    subprocess.run(["ffmpeg","-i","C:\YTDownloads\CurrentAudio.3gpp","C:\YTDownloads\CurrentAudio.mp3]")


    


    os.system('powershell ffmpeg -i  C:\YTDownloads\CurrentAudio.3gpp C:\YTDownloads\CurrentAudio.mp3')


    


    subprocess.run([
    'ffmpeg',
    '-i', os.path.join(parent_dir, f"{newname}.3gpp"),
    os.path.join(parent_dir, f"{newname}.mp3")
]) 


    


    subprocess.call('C:\Windows\System32\powershell.exe ffmpeg -i  C:\YTDownloads\CurrentAudio.3gpp C:\YTDownloads\CurrentAudio.mp3', shell=True)


    


    all of them return some type of error, in some of them it returns that ffmpeg isn't a recognized as a internal command, in others it says that the system can't find the specified path, but none of them works, even thought it works perfectly when i use the exactly same command on cmd/powershell.

    


    sorry for my bad english :3

    


  • avformat/utils : parse some stream specifiers recursively

    5 février 2019, par Marton Balint
    avformat/utils : parse some stream specifiers recursively
    

    This removes lots of code duplication and also allows more complex specifiers,
    for example you can use p:204:a:m:language:eng to select the English language
    audio stream from program 204.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] doc/fftools-common-opts.texi
    • [DH] libavformat/utils.c
  • ffmpeg video keep ref frame of source

    9 avril 2021, par user3449922

    I like to keep the some ref frame of source (in this case ref =1) :

    &#xA;

    Video&#xA;ID                                       : 1&#xA;Format                                   : AVC&#xA;Format/Info                              : Advanced Video Codec&#xA;Format profile                           : High@L3&#xA;Format settings                          : CABAC / 1 Ref Frames&#xA;Format settings, CABAC                   : Yes&#xA;Format settings, Reference frames        : 1 frame&#xA;Codec ID                                 : avc1&#xA;Codec ID/Info                            : Advanced Video Coding&#xA;Duration                                 : 6 min 19 s&#xA;Bit rate                                 : 388 kb/s&#xA;Width                                    : 640 pixels&#xA;Height                                   : 480 pixels&#xA;Display aspect ratio                     : 4:3&#xA;Frame rate mode                          : Variable&#xA;Frame rate                               : 9.479 FPS&#xA;Minimum frame rate                       : 3.750 FPS&#xA;Maximum frame rate                       : 30.030 FPS&#xA;Original frame rate                      : 30.000 FPS&#xA;Color space                              : YUV&#xA;Chroma subsampling                       : 4:2:0&#xA;Bit depth                                : 8 bits&#xA;Scan type                                : Progressive&#xA;Bits/(Pixel*Frame)                       : 0.133&#xA;Stream size                              : 17.5 MiB (74%)&#xA;Language                                 : English&#xA;Codec configuration box                  : avcC&#xA;

    &#xA;

    here the output

    &#xA;

       ID                                       : 1&#xA;    Format                                   : AVC&#xA;    Format/Info                              : Advanced Video Codec&#xA;    Format profile                           : High@L3&#xA;    Format settings                          : CABAC  2 Ref Frames&#xA;    Format settings, CABAC                   : Yes&#xA;    Format settings, Reference frames        : 2 frames&#xA;    Codec ID                                 : avc1&#xA;    Codec ID/Info                            : Advanced Video Coding&#xA;   &#xA;

    &#xA;

    the output Ref Frames are 2 , but I like to keep to 1 or directly force to 1.

    &#xA;

    There is a way to do it ?

    &#xA;

    Thanks !

    &#xA;