linuxeros_es | Unsorted

Telegram-канал linuxeros_es - LinuxerOS

3048

Grupo de LinuxerOS de habla hispana más grande de los últimos tiempos. * El respeto ante TODO * Ayuda sobre GNU/Linux * Consultas sobre Android en general * Deepweb * Hacking Blog Oficial: https://linuxforallsite.wordpress.com

Subscribe to a channel

LinuxerOS

Hiciste copy paste de ese script? Se refiere a que podes usar el comando echo para hacer una especie de debug de tu script, para encontrar la falla.

Читать полностью…

LinuxerOS

no te entiendo sorry

Читать полностью…

LinuxerOS

#!/bin/bash

height=1080
bitrate="3M"
maxrate="6M"
bufsize="6M"
gop=48
preset="ultrafast"

# folders and filenames
inputfolder="./sources"
files=$(ls "$inputfolder"/*.mp4)

for input in "${files[@]}"
do
base=$(basename ${input%.*})
outputfolder="./outputs/$base"
mkdir -p "$outputfolder"
output="${outputfolder}/${base}_${height}p_${preset}.mp4"

ffmpeg -i "${input}" -c:v libx265 -crf 26 -preset ultrafast -c:a aac -b:a 128k ${output}
done

Читать полностью…

LinuxerOS

#!/bin/bash

height=1080
bitrate="3M"
maxrate="6M"
bufsize="6M"
gop=48
preset="ultrafast"

# folders and filenames
inputfolder="./sources"
files=$(ls "$inputfolder"/*.mp4)

for input in "${files[@]}"
do
base=$(basename ${input%.*})
outputfolder="./outputs/$base"
mkdir -p "$outputfolder"
output=""${outputfolder}"/${base}_${height}p_${preset}.mp4"

ffmpeg -i "${input}" -c:v libx265 -crf 26 -preset ultrafast -c:a aac -b:a 128k ${output}
done

Читать полностью…

LinuxerOS

poruqe ademas el directorrio en output tampoco es todo el nombre del archivo

Читать полностью…

LinuxerOS

una ultima cosa, el nombre del archivo solo coge la primera parte del source hasta el primer espacio

Читать полностью…

LinuxerOS

Mil gracias!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

Читать полностью…

LinuxerOS

#!/bin/bash

height=1080
bitrate="3M"
maxrate="6M"
bufsize="6M"
gop=48
preset="ultrafast"

# folders and filenames
inputfolder="./sources"
files=$(ls "$inputfolder"/*.mp4)

for input in ${files[@]}
do
base=$(basename ${input%.*})
outputfolder="./outputs/$base"
mkdir -p $outputfolder
output="${outputfolder}/${base}_${height}p_${preset}.mp4"

ffmpeg -i "${input}" -c:v libx265 -crf 26 -preset ultrafast -c:a aac -b:a 128k ${output}
done

Читать полностью…

LinuxerOS

a este cual te refieres?

Читать полностью…

LinuxerOS

pon comillas a las variables donde haya espacios

Читать полностью…

LinuxerOS

Hola, estoy escribiendo un script para convertir videos con ffmpeg pero no me funciona cuando tengo algun espacio en el nombre del video de origen. Me podeis echar una mano donde esta el error en la sintaxis?

Читать полностью…

LinuxerOS

https://youtu.be/TWa_oWYIeSw?feature=shared

Читать полностью…

LinuxerOS

supongo que no si lo activaste y todo está bien 🤔, la ruta está dentro del propio servicio que creaste no?

Читать полностью…

LinuxerOS

que se instale desde un disco

Читать полностью…

LinuxerOS

No entiendo muy bien lo que quisiste decir señor Tito...

Читать полностью…

LinuxerOS

base="$(basename ${input%.*})"

Читать полностью…

LinuxerOS

128k "${output}" , puedes pner echo variable para ir viendo donde está el error/res

Читать полностью…

LinuxerOS

este estaba bien antes : output=""${outputfolder}"/${base}_${height}p_${preset}.mp4"

Читать полностью…

LinuxerOS

a los outputs finales ponles

Читать полностью…

LinuxerOS

le debe falta algun otras comas en base

Читать полностью…

LinuxerOS

https://www.fpgenred.es/GNU-Linux/expansin_de_parmetros_y_variables.html

Читать полностью…

LinuxerOS

ahora mismo esta asi y sigue sin ir

Читать полностью…

LinuxerOS

ffmpeg -i ${input} -c:v libx265 -crf 26 -preset ultrafast -c:a aac -b:a 128k ${output}

Читать полностью…

LinuxerOS

files=( ls "$inputfolder"/*.mp4)

Читать полностью…

LinuxerOS

#!/bin/bash

height=1080
bitrate="3M"
maxrate="6M"
bufsize="6M"
gop=48
preset="ultrafast"

# folders and filenames
inputfolder="./sources"
files=$(ls $inputfolder/*.mp4)

for input in ${files[@]}
do
base=$(basename ${input%.*})
outputfolder="./outputs/$base"
mkdir -p $outputfolder
output="${outputfolder}/${base}_${height}p_${preset}.mp4"

ffmpeg -i ${input} -c:v libx265 -crf 26 -preset ultrafast -c:a aac -b:a 128k ${output}
done

Читать полностью…

LinuxerOS

Igual no lo entiendo. Para mí en el dibujo Ubuntu tiene que aparecer practicando seppuku.

Читать полностью…

LinuxerOS

bueno, me lo aclararon en otro chat, son independientes, he de hacerlo aparte para el sysV... ahora sólo queda leer y probar 😁😂

Читать полностью…

LinuxerOS

net install se instala a través de internet

Читать полностью…

LinuxerOS

Buenas, una duda,... si yo creo una [Unit] de .service, en la cual llamo a un .sh, con parámetros {start|stop|restart|status}, luego con systemctl hago refresh daemon, enable, start,... etc, ¿debo crear un simlink en /etc/system.d/ (creo que es) para poder usarlo con el comando 'service'?

Читать полностью…

LinuxerOS

NetInstall de Debian 12 que funciones de modo local

Читать полностью…
Subscribe to a channel